# 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.001/call, status unknown (last checked 2026-09-15).

Returns current USD prices for one or more crypto tokens identified by CoinGecko slugs or on-chain contract addresses via DefiLlama's price feed

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/defillama/prices/coingecko:bitcoin,coingecko:ethereum,coingecko:solana
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-ai-bfd4a53e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n0wejOFzxZWqgH1xPpzFn

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

Example prompt: What are the current USD prices for Bitcoin, Ethereum, and Solana right now?

## When to prefer this

Use this endpoint when you need current spot prices for one or more crypto tokens and can identify them by CoinGecko slug (e.g. coingecko:bitcoin) or by chain:contract format. Prefer this over on-chain oracles when you need a quick aggregated USD price without smart contract interaction. It supports batch lookups in a single call, making it efficient for multi-token price checks.

## Known failure modes

- Unknown or misspelled coin identifier returns no price for that token
- Invalid chain prefix causes lookup failure for contract-address-style identifiers
- Rate limiting or payment failure returns 402 or 429 error
- Empty coins path parameter returns error or empty response
- Network timeout if DefiLlama upstream is slow

## 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 containing current USD prices keyed by coin identifier (e.g. coingecko:bitcoin, coingecko:ethereum), with price values and likely timestamps from DefiLlama's aggregated price feed.

## Example request

```json
{
 "input": {
  "body": {}
 }
}
```

## 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-bfd4a53e/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)
