# Riley Craig x402 Agent Store — Crypto AI Visibility Score

> Riley Craig x402 Agent Store — Crypto AI Visibility Score 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).

Returns an AI-visibility score and competitor mentions for a given crypto token, protocol, or chain across AI-generated content

## Facts

- Endpoint: GET https://x402-agent-store.rileycraig14.workers.dev/crypto/ai-visibility
- 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-crypto-ai-visibility-score-9e593c54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tkSzAGuCbHcegkVawYhrw

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-crypto-ai-visibility-score-9e593c54
```

Example prompt: What's Aave's AI visibility score in the DeFi lending protocols category — how often is it mentioned compared to competitors like Compound and Morpho?

## When to prefer this

Use this endpoint when you need to quantify how visible or prominent a specific crypto project is within AI-generated content relative to its peers. Ideal for marketing intelligence, competitive benchmarking, or assessing 'AI mindshare' for DeFi protocols, L2 chains, or tokens. Prefer this over generic web search endpoints when you specifically want an AI-content visibility score rather than raw search results or on-chain data.

## Known failure modes

- Missing 'project' query parameter returns a 400 validation error
- Unknown or very obscure project name may return score of 0 with empty competitors array
- Payment not provided or insufficient USDC results in 402 Payment Required response
- Network timeout on underlying AI-content aggregation returns 503
- Invalid category string may default to generic 'crypto projects' category

## 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 with: an integer visibility score (0-100), total number of sources checked, the project name, the category used, the count of AI mentions found, and an array of identified competitor projects in that 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": [
      "project"
     ],
     "properties": {
      "project": {
       "type": "string",
       "description": "Token/protocol/chain name, e.g. Aave, Arbitrum, Uniswap"
      },
      "category": {
       "type": "string",
       "description": "e.g. 'DeFi lending protocols', 'Layer 2 networks', 'AI crypto agents' (default: crypto projects)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "score": {
       "type": "number"
      },
      "project": {
       "type": "string"
      },
      "mentions": {
       "type": "number"
      },
      "competitors": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 80,
  "total": 5,
  "project": "Aave",
  "category": "DeFi lending protocols",
  "mentions": 4,
  "competitors": [
   "Compound",
   "Morpho"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/riley-craig-x402-agent-store-crypto-ai-visibility-score-9e593c54/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)
