# Einstein AI x402 API – Zora Token Trading Volume Analyzer

> Einstein AI x402 API – Zora Token Trading Volume Analyzer is a paid API for AI agents from api.relai.fi, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-15).

Analyzes trading volume and activity for Zora-launched tokens on the Base blockchain, returning ranked results by configurable time period and limit.

## Facts

- Endpoint: POST https://api.relai.fi/relay/1769629274857/x402/bitquery/zora-volume
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/einstein-ai-x402-api-zora-token-trading-volume-analyzer-4f5c07d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3VKngB08XLlHgfJOncRB8

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 einstein-ai-x402-api-zora-token-trading-volume-analyzer-4f5c07d6 -d '<json body>'
```

Example prompt: Pull the top 25 Zora-launched tokens by trading volume on Base for the last 24 hours — I want to see which ones are the most active right now.

## When to prefer this

Use this endpoint when you need on-chain trading volume and activity data specifically for tokens launched through the Zora protocol on the Base blockchain. Prefer this over generic DEX analytics when your focus is Zora-ecosystem tokens and you need fast, ranked volume data without building your own Bitquery query.

## Known failure modes

- Invalid timeperiod enum value returns a 400 bad request
- Limit exceeding 500 may be rejected or clamped
- Network or Bitquery upstream outage may return 5xx error
- Insufficient USDC balance or x402 payment failure blocks the request
- Base chain data lag may cause stale or incomplete results for very recent time windows like 1h

## How this service works

Analyze trading volume and activity for Zora-launched tokens. Supported chains: base. Default chain: base. Required params: none (chain/limit/timeperiod are optional and defaulted).

## Output

Returns a ranked list of Zora-launched tokens with associated trading volume and activity metrics on the Base chain, scoped to the requested time period and limited to the specified number of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "string",
   "description": "Maximum number of results to return (default: 10, max: 500)"
  },
  "timeperiod": {
   "enum": [
    "1h",
    "4h",
    "24h",
    "7d",
    "30d"
   ],
   "type": "string",
   "description": "Time period for analysis (e.g., 1h, 24h, 7d, 30d)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/einstein-ai-x402-api-zora-token-trading-volume-analyzer-4f5c07d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relai.fi](https://www.zero.xyz/host/api.relai.fi/llms.txt)
