# Binance BTCUSDT Raw Book Ticker (Microsecond)

> Binance BTCUSDT Raw Book Ticker (Microsecond) is a paid API for AI agents from blockrun.ai, paid per call via x402, $0.0085/call, status unknown (last checked 2026-09-14).

Returns raw Binance book ticker data for BTCUSDT at microsecond granularity, providing best bid/ask prices and quantities in real time.

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/pm/binance/ticks/BTCUSDT
- Price: $0.0085/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/binance-btcusdt-raw-book-ticker-microsecond-d2f31eb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BA7hcAdczdEJquaEDH_Jc

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 binance-btcusdt-raw-book-ticker-microsecond-d2f31eb8
```

Example prompt: Can you pull the latest raw book ticker for BTCUSDT from Binance right now — I need the best bid and ask prices and quantities at microsecond precision?

## When to prefer this

Use this endpoint when you need real-time, microsecond-granularity best bid/ask data for BTCUSDT from Binance specifically, without needing a full order book depth. Ideal for latency-sensitive trading agents, spread monitoring, arbitrage detection, or any workflow that needs the freshest possible top-of-book price without managing Binance API keys — paying only per call in USDC.

## Known failure modes

- Binance upstream outage or rate limiting causes stale or missing data
- Network timeout resulting in no response
- Invalid or unsupported symbol returns an error
- Service unavailable if payment (0.005 USDC) is not settled

## How this service works

Get raw book ticker data at microsecond granularity

## Output

Returns raw book ticker data for the BTCUSDT trading pair sourced from Binance, including best bid price, best ask price, bid quantity, ask quantity, and a high-resolution microsecond timestamp — giving a snapshot of the top of the order book at the moment of the call.

## 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/binance-btcusdt-raw-book-ticker-microsecond-d2f31eb8/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)
