# Crypto Market Data – Symbol Info

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

Returns live trading status and market metadata for a given Binance trading symbol (e.g. BTCUSDT).

## Facts

- Endpoint: POST https://crypto-market-data.up.railway.app/symbol-info
- Price: $0.00155/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-market-data-symbol-info-d7786d04
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yyCw-A1S-exu_cj-_qtIk

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-symbol-info-d7786d04 -d '<json body>'
```

Example prompt: Can you look up the symbol info for BTCUSDT — I need to know its trading status, base and quote assets, and the precision settings from Binance?

## When to prefer this

Choose this endpoint when you need lightweight, fast symbol-level metadata from Binance — especially trading status and precision settings — without requiring a full order book or price feed. Ideal for pre-trade validation, data enrichment pipelines, or populating dashboards with accurate pair metadata. Prefer over general market data APIs when you specifically need Binance-sourced symbol info with per-call micropayment pricing.

## Known failure modes

- Invalid or unknown symbol returns an error or empty response
- Symbol must be uppercase alphanumeric — lowercase or special characters will fail schema validation
- Temporarily delisted or suspended symbols may return a non-TRADING status
- Service downtime on Railway hosting may cause connection errors
- Rate limiting or payment failures may result in 402 responses

## How this service works

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

## Output

A JSON object containing the symbol's current trading status (e.g. TRADING), the base asset ticker (e.g. BTC), the quote asset ticker (e.g. USDT), and precision values for base asset, quote asset, and quote — all reflecting live Binance exchange metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "pattern": "^[A-Z0-9]+$",
   "examples": [
    "BTCUSDT"
   ],
   "description": "Trading symbol to look up, e.g. BTCUSDT."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "TRADING",
  "symbol": "BTCUSDT",
  "baseAsset": "BTC",
  "quoteAsset": "USDT",
  "quotePrecision": 8,
  "baseAssetPrecision": 8,
  "quoteAssetPrecision": 8
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-market-data-symbol-info-d7786d04/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)
