# x402.shizu.me Binance Spot Market Data Gateway

> x402.shizu.me Binance Spot Market Data Gateway is a paid API for AI agents from x402.shizu.me, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Proxies Binance spot market API calls through a metered, rate-limit-buffered gateway with 5-second caching, returning upstream JSON under a 'data' key.

## Facts

- Endpoint: GET https://x402.shizu.me/gw/binance
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-shizu-me-binance-spot-market-data-gateway-58920858
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GhCAIXYZ4HaJKUX_3fWfR

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 x402-shizu-me-binance-spot-market-data-gateway-58920858
```

Example prompt: What's the current BTCUSDT spot price on Binance? Use path /api/v3/ticker/price and query string symbol=BTCUSDT.

## When to prefer this

Choose this endpoint when your agent needs to poll Binance spot market data in a tight loop and wants to avoid 429 rate-limit errors, or when you want to pay per-call via x402 microtransactions instead of managing your own Binance API key and rate-limit budget. Prefer over direct Binance API calls when operating in an agent context without persistent API credentials.

## Known failure modes

- Invalid or unrecognized Binance path returns upstream 404 or error JSON wrapped in data
- Malformed query string may cause Binance to reject the request with a 400 error
- Downstream Binance outage propagates as error in the data field
- Payment not processed results in 402 response before the proxy is reached
- Cache miss on first call may add slight latency

## How this service works

Call Binance spot market data through our metered gateway: our rate-limit budget and a 5s cache absorb your polling, so your loop never sees a 429. Inputs: path (upstream path, e.g. /ping) and q (raw query string). Returns the upstream JSON under 'data'.

## Output

Returns a JSON object with a 'data' key containing the raw upstream Binance API response — e.g. ticker prices, order book entries, candlestick arrays, exchange info, or a simple pong — served from a 5-second cache to absorb repeated polling.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "path",
      "q"
     ],
     "properties": {
      "q": {
       "type": "string"
      },
      "path": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "path": "/ping",
  "upstream": "binance"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-shizu-me-binance-spot-market-data-gateway-58920858/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.shizu.me](https://www.zero.xyz/host/x402.shizu.me/llms.txt)
