# AgentDatum Crypto Price API

> AgentDatum Crypto Price API is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the latest real-time price for a cryptocurrency symbol (e.g. BTC, ETH) aggregated from Binance, OKX, and Coinbase

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/crypto/price
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentdatum-crypto-price-api-7022af29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B0E854JWFRvXIFjNGCSFQ

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 agentdatum-crypto-price-api-7022af29
```

Example prompt: What's the current price of BTC right now, pulled from Binance, OKX, and Coinbase?

## When to prefer this

Choose this endpoint when you need a real-time, multi-exchange aggregated crypto price for a specific ticker symbol. It is ideal for trading bots, portfolio trackers, or any agent workflow that needs the latest BTC, ETH, or altcoin rate from major exchanges (Binance, OKX, Coinbase) in a single call at very low cost ($0.001 per call).

## Known failure modes

- Invalid or unsupported symbol returns an error or empty result
- Symbol not listed on any of the three exchanges may return no price
- Network or exchange downtime may cause stale or missing data
- Malformed query parameter (missing 'symbol') returns a validation error

## How this service works

Live crypto prices from Binance, OKX and Coinbase — get the latest BTC, ETH and altcoin rates

## Output

Returns the current market price of the requested cryptocurrency symbol, aggregated across Binance, OKX, and Coinbase, typically including the price value and possibly per-exchange breakdown or a consolidated rate.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentdatum-crypto-price-api-7022af29/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
