# AgentOracle Token List with Filters

> AgentOracle Token List with Filters 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 paginated, market-cap-sorted list of real-time on-chain crypto tokens with optional filters for chain, liquidity, 24h volume, and market cap.

## Facts

- Endpoint: GET https://aiagentoracle.ai/api/v1/tokens
- 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-beaac4c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yhVAKhq6vfhk5_nqhZ1jh

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-beaac4c2
```

Example prompt: Pull me the top 50 tokens on Base with at least $500k liquidity and $1M in 24h volume, sorted by market cap — include price, market cap, volume, and confidence scores.

## When to prefer this

Use this endpoint when you need a browsable, filterable, paginated list of on-chain tokens ranked by market cap — especially when you want to apply multiple filters (chain, liquidity, volume, market cap) simultaneously. Prefer this over the single-token lookup endpoint when you need a leaderboard or a screened set of tokens rather than data on one specific token.

## Known failure modes

- Invalid chain slug returns an error or empty result set
- Offset beyond total count returns an empty tokens array
- Payment not provided or insufficient results in 402 Payment Required
- min_liquidity / min_volume_24h / min_market_cap set too high returns empty list
- Rate limiting or provider downtime returns 5xx error

## How this service works

AgentOracle: list real-time on-chain crypto tokens sorted by market cap, with chain / min-liquidity / min-24h-volume / min-market-cap filters and limit+offset pagination. Each row includes price, 24h volume, market cap, liquidity, 24h price change, and confidence score.

## Output

A JSON object containing an array of token records (id, symbol, name, chain, priceUsd, volume24h, marketCap, liquidityUsd, 24h price change, confidenceScore, lastUpdated), the total count of matching tokens, and a freshness timestamp indicating when data was last ingested.

## 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",
     "properties": {
      "chain": {
       "type": "string",
       "description": "EVM chain slug, e.g. 'base', 'ethereum', 'arbitrum'."
      },
      "limit": {
       "type": "integer",
       "default": 100,
       "maximum": 500,
       "minimum": 1,
       "description": "Page size."
      },
      "offset": {
       "type": "integer",
       "default": 0,
       "minimum": 0,
       "description": "Page offset."
      },
      "min_liquidity": {
       "type": "number",
       "minimum": 0,
       "description": "Minimum on-chain pool liquidity in USD."
      },
      "min_market_cap": {
       "type": "number",
       "minimum": 0,
       "description": "Minimum fully-diluted market cap in USD."
      },
      "min_volume_24h": {
       "type": "number",
       "minimum": 0,
       "description": "Minimum trailing 24h volume in USD."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "tokens",
      "total",
      "freshness"
     ],
     "properties": {
      "total": {
       "type": "integer",
       "minimum": 0
      },
      "tokens": {
       "type": "array",
       "items": {
        "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"
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aiagentoracle-ai-beaac4c2/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)
