# Riley Craig x402 Agent Store – Brand AI Visibility Check

> Riley Craig x402 Agent Store – Brand AI Visibility Check is a paid API for AI agents from x402-agent-store.rileycraig14.workers.dev, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Checks how visible and frequently mentioned a brand is in AI-generated responses within a given product category, returning a score, mention count, and competitor list.

## Facts

- Endpoint: GET https://x402-agent-store.rileycraig14.workers.dev/brands/check
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/riley-craig-x402-agent-store-brand-ai-visibility-check-2c2755d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3TapsFRJtEqu3WIzrFU7o

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 riley-craig-x402-agent-store-brand-ai-visibility-check-2c2755d3
```

Example prompt: Check how visible Acme Logistics is in AI-generated responses in the logistics software category — I want the visibility score, how many times it's mentioned, and which competitors are showing up instead.

## When to prefer this

Use this endpoint when you need to quantify how often and prominently a specific brand appears in AI-generated answers within a product category — especially for competitive benchmarking or AI SEO auditing. Prefer this over general web SEO tools when the specific concern is AI chatbot visibility rather than traditional search ranking.

## Known failure modes

- Missing required 'brand' or 'category' query params returns an error
- Unknown or misspelled brand names may return a score of 0 with empty mentions
- Payment failure via x402/USDC results in 402 Payment Required before data is returned
- Very niche brands or categories may return low-confidence results with minimal data

## How this service works

Machine-payable data APIs for AI agents — 35 endpoints across web search, on-chain reads, trading data, and AI-visibility. Pay per call in USDC via x402 on Base. No API keys, no signup.

## Output

Returns a JSON object containing the brand name, a numeric AI visibility score, total responses analyzed, number of brand mentions, and an array of competing brands that appeared in AI responses for the same category.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "brand",
      "category"
     ],
     "properties": {
      "brand": {
       "type": "string"
      },
      "market": {
       "type": "string"
      },
      "category": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "score": {
       "type": "number"
      },
      "mentions": {
       "type": "number"
      },
      "competitors": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "brand": "Acme Logistics",
  "score": 20,
  "total": 5,
  "mentions": 0,
  "competitors": [
   "BigCo",
   "OtherCo"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riley-craig-x402-agent-store-brand-ai-visibility-check-2c2755d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-agent-store.rileycraig14.workers.dev](https://www.zero.xyz/host/x402-agent-store.rileycraig14.workers.dev/llms.txt)
