# Crypto Market Data Agent

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

Answers natural language questions about live crypto symbols, market metadata, and historical Binance candlestick data

## Facts

- Endpoint: POST https://crypto-market-data.up.railway.app/ask_question
- Price: $0.005/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-agent-6b84adab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e1NLIvFTUak3dzc_YHaSG

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-agent-6b84adab -d '<json body>'
```

Example prompt: What are the available USDT trading pairs on Binance right now, and can you pull the last 24 hours of 1-hour candlestick data for BTC/USDT?

## When to prefer this

Choose this endpoint when you need conversational, natural-language access to Binance market data — including live symbols, market metadata, and historical candlesticks — without building a direct Binance API integration. Ideal for agents that need to answer ad-hoc crypto market questions, populate dashboards, or gather OHLCV data for analysis, especially when a pay-per-call model ($0.005 USDC) is preferable to managing API keys.

## Known failure modes

- Ambiguous question may return a generic explanation of service rather than specific data
- Unknown or delisted symbol may return empty results or an error
- Rate limits may cause failures during high-frequency querying
- Binance API downtime propagates as unavailable data
- Malformed question strings may yield unhelpful responses

## How this service works

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

## Output

A JSON response containing an answer field with natural language and/or structured data covering the requested market information, such as symbol lists, candlestick OHLCV arrays, price metadata, or explanations of the service's capabilities.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "question": {
   "type": "string",
   "description": "Ask a question before purchasing the service!"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "answer": "I can explain the service and answer pre-purchase questions."
 }
}
```

## More

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