# BlockRun.AI Binance OHLCV Candlestick Data

> BlockRun.AI Binance OHLCV Candlestick Data is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-17).

Returns OHLCV (Open, High, Low, Close, Volume) candlestick data for the BTCUSDT trading pair on Binance

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/pm/binance/candles/BTCUSDT
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-ai-917229e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pQ0ph6-VX2Zn2Mfqblu10

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-917229e3
```

Example prompt: Pull the latest OHLCV candlestick data for BTCUSDT from Binance so I can analyze the recent price action.

## When to prefer this

Use this endpoint when you need structured OHLCV candlestick data specifically for the BTC/USDT pair on Binance, especially in agentic workflows requiring real-time or recent historical price data for trading analysis, charting, or signal generation. Prefer over generic market data APIs when Binance-sourced data is required.

## Known failure modes

- Invalid trading pair symbol returns error
- Binance API unavailability causes upstream failure
- Rate limiting or quota exceeded returns 429
- Payment failure via x402 protocol prevents access
- Malformed query parameters result in bad request error

## How this service works

Get OHLCV candlestick data for a Binance trading pair

## Output

Returns an object containing OHLCV candlestick data for the BTCUSDT trading pair, including open, high, low, close prices and volume figures for each candle interval, suitable for charting or technical analysis.

## 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-917229e3/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)
