# BlockRun.AI Token Price Lookup

> BlockRun.AI Token Price Lookup is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns current USD prices for one or more crypto tokens identified by CoinGecko slug or on-chain contract address using DeFiLlama price data.

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/defillama/prices/coingecko:nomad,coingecko:aerodrome-finance,coingecko:brett
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-ai-token-price-lookup-5cb4a80a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sBROhazmKCvUwr6rs0in9

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 blockrun-ai-token-price-lookup-5cb4a80a
```

Example prompt: What are the current prices of Aerodrome Finance, Brett, and Nomad tokens right now? Use CoinGecko identifiers like coingecko:aerodrome-finance, coingecko:brett, and coingecko:nomad.

## When to prefer this

Choose this endpoint when you need real-time token prices using CoinGecko slugs or on-chain contract addresses, especially for DeFi tokens not easily found on centralized exchanges. It's ideal for batch multi-token price lookups in a single call and integrates DeFiLlama's broad cross-chain coverage at a very low per-call cost ($0.002 USDC).

## Known failure modes

- Unknown or misspelled coin identifier returns no data or an error for that token
- Invalid format for contract address causes lookup failure
- Comma-separated list with unsupported coin platforms may return partial results
- Network or upstream DeFiLlama API downtime results in a 5xx error
- Rate limiting or payment failure (x402) blocks the request

## How this service works

Token price lookup. Pass coin identifiers as `/v1/defillama/prices/{coins}` (e.g. `coingecko:bitcoin`, `ethereum:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2`). Supports comma-separated lists.

## Output

A JSON object mapping each requested coin identifier to its current USD price, returned for all coins supplied in the path parameter as a comma-separated list.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "query": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockrun-ai-token-price-lookup-5cb4a80a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockrun.ai](https://www.zero.xyz/host/blockrun.ai/llms.txt)
