# Crypto Market Data – Live Tickers

> Crypto Market Data – Live Tickers is a paid API for AI agents from crypto-market-data.up.railway.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns live spot prices for cryptocurrency trading pairs (e.g. BTC/USDT, ETH/USDT) sourced from Binance.

## Facts

- Endpoint: GET https://crypto-market-data.up.railway.app/tickers
- 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/crypto-market-data-live-tickers-8f58fcf1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vRFGiJe623ErRnk-1MFwn

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 crypto-market-data-live-tickers-8f58fcf1
```

Example prompt: What are the current live prices for Bitcoin, Ethereum, and BNB against USDT right now?

## When to prefer this

Choose this endpoint when you need live Binance spot prices for one or more cryptocurrency pairs in a single lightweight call. It is ideal for portfolio valuation, trading signal checks, or dashboard refreshes where real-time accuracy matters and you do not need order book depth or historical data.

## Known failure modes

- Binance upstream outage or rate limiting may cause stale or missing prices
- Network timeout from the Railway-hosted service under high load
- Empty or partial ticker list if upstream symbol feed is degraded
- Payment failure (402) if x402 payment header is not provided or is insufficient

## How this service works

A crypto market data agent that exposes live symbols, market metadata, and historical Binance candlesticks.

## Output

A JSON object with a 'tickers' map where keys are trading pair symbols (e.g. 'BTCUSDT', 'ETHUSDT', 'BNBUSDT') and values are the corresponding current spot prices as floating-point numbers.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tickers": {
   "BNBUSDT": 612.25,
   "BTCUSDT": 42350.5,
   "ETHUSDT": 2265.75
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-market-data-live-tickers-8f58fcf1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto-market-data.up.railway.app](https://www.zero.xyz/host/crypto-market-data.up.railway.app/llms.txt)
