# AgentOracle Token Detail by Symbol

> AgentOracle Token Detail by Symbol is a paid API for AI agents from aiagentoracle.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a full price/volume/liquidity/market-cap snapshot for a single on-chain crypto token looked up by its ticker symbol.

## Facts

- Endpoint: GET https://aiagentoracle.ai/api/v1/token/%7Bsymbol%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aiagentoracle-ai-e6b8dc18
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9R2nGV3oFbkumpa-bmKme

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 aiagentoracle-ai-e6b8dc18
```

Example prompt: Can you pull up the full AgentOracle snapshot for SOL — I want the spot price, 24h volume, liquidity, market cap, and price change percentage?

## When to prefer this

Use this endpoint when you need a comprehensive single-token market snapshot including price, volume, liquidity, market cap, and confidence score for a known ticker symbol. Prefer this over the minimal price endpoint when you need more than just the spot price, and over the top-N list when you only need data for one specific token.

## Known failure modes

- Symbol not tracked by AgentOracle — returns 404
- Symbol passed in an unexpected format may not resolve (though lookup is case-insensitive)
- Price/volume/liquidity fields may be null if data is unavailable for that token
- Payment of $0.01 USDC on Base must succeed via x402 protocol or the call will be rejected
- Stale data possible if ingestion pipeline has a lag (check lastUpdated field)

## How this service works

Get a single AgentOracle-tracked token by its ticker symbol (case-insensitive, e.g. ETH, BTC, SOL). Returns the full price/volume/liquidity/market-cap snapshot or 404 if the symbol is unknown. Costs $0.01 USDC on Base per call.

## Output

A JSON object containing the token's internal ID, uppercase symbol, name, EVM chain slug, spot price in USD, fully-diluted market cap, 24h trading volume, on-chain pool liquidity, 24h price change percentage, a confidence score for the data source quality, an image URL, and a last-updated timestamp. Returns 404 if the symbol is not tracked.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Uppercase ticker symbol, e.g. ETH, BTC, SOL."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "id",
      "symbol",
      "name",
      "chain",
      "lastUpdated"
     ],
     "properties": {
      "id": {
       "type": "integer",
       "description": "Internal numeric identifier."
      },
      "name": {
       "type": "string"
      },
      "chain": {
       "type": "string",
       "description": "EVM chain slug (e.g. base, ethereum, arbitrum)."
      },
      "symbol": {
       "type": "string",
       "description": "Uppercase ticker symbol, e.g. ETH."
      },
      "imageUrl": {
       "type": [
        "string",
        "null"
       ],
       "format": "uri"
      },
      "priceUsd": {
       "type": [
        "number",
        "null"
       ],
       "description": "Spot price in USD."
      },
      "marketCap": {
       "type": [
        "number",
        "null"
       ],
       "description": "Fully-diluted market cap in USD."
      },
      "volume24h": {
       "type": [
        "number",
        "null"
       ],
       "description": "Trailing 24h trading volume in USD."
      },
      "lastUpdated": {
       "type": "string",
       "format": "date-time"
      },
      "liquidityUsd": {
       "type": [
        "number",
        "null"
       ],
       "description": "On-chain pool liquidity in USD."
      },
      "confidenceScore": {
       "type": [
        "number",
        "null"
       ],
       "description": "Source-quality score, 0..1."
      },
      "priceChange24hPercent": {
       "type": [
        "number",
        "null"
       ],
       "description": "24h price change, percent (-100..+inf)."
      }
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aiagentoracle-ai-e6b8dc18/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aiagentoracle.ai](https://www.zero.xyz/host/aiagentoracle.ai/llms.txt)
