# Brand Visibility Index

> Brand Visibility Index is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns a scored visibility index for brands across software categories, including mention counts and competitor context.

## Facts

- Endpoint: GET https://store.agentexchange.work/brands/visibility-index
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brand-visibility-index-6844a396
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Akb22MGdCXBR52iif-ezN

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability brand-visibility-index-6844a396
```

Example prompt: Pull the latest brand visibility index for CRM software — I want to see how Salesforce scores, how many times it's mentioned, and who its top competitors are in the current edition.

## When to prefer this

Use this endpoint when an AI agent needs curated, scored brand visibility data across software/SaaS categories with competitor context — particularly when you want a structured, pre-computed ranking rather than raw search results. Ideal for competitive intelligence, market mapping, or brand benchmarking tasks where per-call micropayment via x402 is acceptable.

## Known failure modes

- Payment not fulfilled via x402 — 402 response requiring USDC payment on Base before data is returned
- Invalid or malformed properties filter — may return empty data array or 400 error
- No brands match the requested filter — returns empty brands array
- Service unavailable or upstream data not refreshed — 503 or stale edition returned

## How this service works

Proprietary dataset: AI-visibility scores (0-100) for 25 major brands across 5 industries (trucking, project management, website builders, CRM, AI code editors), measured by whether an LLM names them in answers to real buyer questions. Includes mention counts and which competitors AI names instead. Refreshed each edition. For market-research, brand-monitoring and GEO agents.

## Output

Returns a JSON object with an array of software categories, each containing ranked brands with their visibility score, total mention count, and a list of top competitors. Also includes aggregate stats: total brands tracked, categories covered, and the edition (month/year) of the data.

## Example request

```json
{
 "properties": "CRM"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "brands": [
     {
      "name": "Salesforce",
      "score": 80,
      "total": 5,
      "mentions": 5,
      "competitors": [
       "HubSpot CRM",
       "Zoho CRM"
      ]
     }
    ],
    "category": "CRM software"
   }
  ],
  "brands": 25,
  "edition": "June 2026",
  "categories": 5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/brand-visibility-index-6844a396/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
