# AgentOracle Token Snapshot by Symbol

> AgentOracle Token Snapshot 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 on-chain crypto token snapshot (price, volume, liquidity, market cap) for a single ticker symbol.

## Facts

- Endpoint: GET https://aiagentoracle.ai/api/v1/token/ETH
- 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-809c15d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LzyQgOVc7_tn-8D-qq5pc

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-809c15d3
```

Example prompt: What's the current price, market cap, 24h volume, and on-chain liquidity for SOL right now? I want the full snapshot including any confidence score on the data.

## When to prefer this

Use this endpoint when you need a comprehensive on-chain token data snapshot — price, volume, liquidity, market cap, and chain metadata — for a single token identified by its ticker symbol. Prefer this over the minimal price-only endpoint when your agent needs multiple data dimensions in a single call, or when confidence scoring and chain identification matter.

## Known failure modes

- 404 if the ticker symbol is not tracked by AgentOracle
- Case-sensitivity edge cases (though lookup is described as case-insensitive)
- Null values for price, market cap, volume, or liquidity if data is unavailable
- Stale data if ingestion pipeline is delayed
- Network timeout or service unavailability

## How this service works

AgentOracle: lookup a single on-chain crypto token by 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.

## Output

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

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "symbol": "ETH"
  },
  "queryParams": {}
 }
}
```

## 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-809c15d3/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)
