# Binance Spot Order Book Snapshot

> Binance Spot Order Book Snapshot is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a real-time order book snapshot for any Binance spot trading pair, including top bids/asks, price levels, quantities, total depth, and imbalance ratio.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-binance-orderbook
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-f3c6b6a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__fKk4Uc4iu1GMigfZDNzJ

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 proxy-suverse-io-f3c6b6a0 -d '<json body>'
```

Example prompt: Pull the current order book snapshot for BTC/USDT on Binance — I want to see the top bids and asks, total depth on each side, and whether there's more buying or selling pressure right now.

## When to prefer this

Use this endpoint when you need real-time Binance spot market order book data specifically, including depth and imbalance metrics computed server-side. Prefer this over raw Binance API calls when you want a clean structured response with pre-calculated depth totals and imbalance ratio, or when building agents that need to pay per-call via x402/USDC without managing Binance API keys.

## Known failure modes

- Invalid or unsupported trading pair symbol returns an error
- Binance API downtime or rate limiting causes upstream failure
- Malformed request body results in a 400 bad request
- Network timeout if Binance public API is slow to respond
- Payment not processed via x402 protocol results in 402 error

## How this service works

Binance spot order book snapshot for any trading pair. Top bids and asks with price/quantity, total bid depth, total ask depth, imbalance ratio. AI agent market pressure detection, MEV arbitrage, price-impact calculator, microstructure API, real-time L2.

## Output

Returns a structured snapshot of the Binance spot order book for the requested pair, including ordered price levels with quantities for both bids and asks, aggregate total bid depth, total ask depth, and an order book imbalance ratio indicating relative buy vs. sell pressure.

## Example request

```json
{
 "limit": 20,
 "symbol": "BTCUSDT"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proxy-suverse-io-f3c6b6a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
