What It Shows

The widget displays BMOS's public Agent Interactions Powered counter using real BMOS-observed analytics data. The main number counts agentic commerce activity such as feed reads, product records served, agentic feed discoveries, and agentic checkout/button actions.

The detail rows also show useful related commerce signals, including human button views. Human activity is tracked separately because it is valuable, but it is not folded into the agent-only headline number.

It does not claim ChatGPT, Gemini, Claude, or other closed-model impressions. BMOS reports observable platform events.

Preview

Copy-Paste Snippet

Add this where you want the counter to appear, usually a footer, trust area, About page, agentic commerce page, or storefront trust section.

<script src="https://app.buildmyonlinestore.com/static/bmos-agent-counter.js" defer></script>
<bmos-agent-counter
  count="67710"
  endpoint="https://app.buildmyonlinestore.com/api/public/agent-interactions-counter"
  label="Agent Interactions Powered"
></bmos-agent-counter>

Options

Attribute Use
count Fallback number shown before the live BMOS API responds.
display-count Optional exact display string, such as 67,710.
endpoint JSON endpoint that returns the live counter.
label Visible label below the number.
variant Use dark, light, or minimal.
live="false" Disables the API request and uses only the fallback count.
details="false" Hides the breakdown rows and shows only the headline counter.

Astro Example

For an Astro frontend, place the same snippet inside a component or layout footer.

---
---

<script src="https://app.buildmyonlinestore.com/static/bmos-agent-counter.js" defer></script>
<bmos-agent-counter
  count="67710"
  endpoint="https://app.buildmyonlinestore.com/api/public/agent-interactions-counter"
  label="Agent Interactions Powered"
  variant="light"
></bmos-agent-counter>

Recommended Placement