# gold-sap.com Crypto Order Book Depth API

> gold-sap.com Crypto Order Book Depth API is a paid API for AI agents from gold-sap.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns real-time order book depth (buy and sell walls) for a cryptocurrency symbol aggregated across Binance, OKX, and Coinbase

## Facts

- Endpoint: GET https://gold-sap.com/api/v1/crypto/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/gold-sap-com-crypto-order-book-depth-api-d47f2658
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UDLESLmWBQR04RDrLrAtf

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 gold-sap-com-crypto-order-book-depth-api-d47f2658
```

Example prompt: Show me the order book depth for BTC right now — I want to see the top 10 buy and sell walls aggregated across Binance, OKX, and Coinbase.

## When to prefer this

Choose this endpoint when you need real-time, multi-exchange aggregated order book data for major cryptocurrencies and want to assess market depth, identify buy/sell walls, or gauge liquidity before executing a trade. It is especially valuable over single-exchange order book APIs when a broader market view spanning Binance, OKX, and Coinbase is needed in a single call.

## Known failure modes

- Invalid or unsupported symbol returns error response
- Limit parameter out of acceptable range returns validation error
- Exchange data feed outage may result in partial or stale data
- Network timeout if exchange APIs are temporarily slow
- Malformed symbol format (e.g. missing base/quote pair) causes bad request

## How this service works

Real-time order book depth showing buy and sell walls across Binance, OKX and Coinbase

## Output

Returns a structured order book object containing arrays of bid (buy) and ask (sell) price levels with associated quantities, aggregated from Binance, OKX, and Coinbase. Includes price levels sorted by proximity to mid-market, giving a picture of buy and sell walls at various depths.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "limit": {
       "type": "integer"
      },
      "symbol": {
       "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/gold-sap-com-crypto-order-book-depth-api-d47f2658/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gold-sap.com](https://www.zero.xyz/host/gold-sap.com/llms.txt)
