# BizIntel API – Binance Order Book

> BizIntel API – Binance Order Book is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Fetches the current bid and ask order book for a given Binance trading symbol pair in real time

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/finance/binance-orderbook
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-binance-order-book-56c637cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QmAEazRuC3JXHS76MVl-2

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 bizintel-api-binance-order-book-56c637cf -d '<json body>'
```

Example prompt: What are the current bids and asks on Binance for BTCUSDT right now? Pull the live order book so I can see the market depth.

## When to prefer this

Use this endpoint when you need live Binance order book data (bids and asks) for a specific crypto trading pair, without managing API keys or Binance credentials. Best for AI agents that need on-demand, pay-per-call market depth data for trading decisions, spread analysis, or liquidity checks.

## Known failure modes

- Invalid or unsupported trading symbol returns an error or supported:false
- Network timeout if Binance API is temporarily unavailable
- Malformed symbol string (e.g. missing pair suffix like USDT) results in empty or error response
- Payment failure via x402/USDC prevents the call from executing

## How this service works

Retrieves bid/ask levels from the Binance public API for a crypto symbol.

## Output

Returns a structured JSON object with arrays of current ask price-quantity pairs and bid price-quantity pairs for the requested trading symbol, along with a confidence rating, data timestamp, and an informational disclaimer. Example: {result: {asks: [['65010','1.2']], bids: [['65000','0.5']]}, confidence: 'high', supported: true}

## 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": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Trading symbol pair (e.g. BTCUSDT)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "asks": [
    [
     "65010",
     "1.2"
    ]
   ],
   "bids": [
    [
     "65000",
     "0.5"
    ]
   ]
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-binance-order-book-56c637cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
