# Suverse Binance Recent Trades Feed

> Suverse Binance Recent Trades Feed 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 the last 100 executed trades for a specified Binance spot trading pair, including price, quantity, buy/sell side, and millisecond timestamps.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-binance-trades
- 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-4be64f31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BFWhE4wIHo5vXidtSgCd1

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-4be64f31 -d '<json body>'
```

Example prompt: Show me the last 100 executed trades on Binance for the BTCUSDT spot pair — I want to see the price, quantity, whether each trade was a buy or sell, and the exact timestamps so I can figure out if there's whale activity or unusual buy pressure.

## When to prefer this

Use this endpoint when you need real-time, tick-level trade execution data from Binance spot markets — specifically the last 100 trades with side information. Prefer this over order book endpoints when you need executed (confirmed) trades rather than pending orders, and over candlestick endpoints when you need individual trade granularity rather than OHLCV aggregates.

## Known failure modes

- Invalid or unsupported trading pair symbol returns an error
- Binance API outage or rate limit causes upstream failure
- Malformed POST body results in 400 bad request
- Payment not received or x402 authorization failure blocks the request
- Network timeout from proxy to Binance upstream

## How this service works

Last 100 executed trades for any Binance spot pair. Price, quantity, buy/sell side, ms timestamp. AI agent whale tracker, VWAP calculator, tape-reading bot, tick-level analysis. Real-time public trade data from the largest crypto spot exchange.

## Output

An array of up to 100 recent trade records for the requested Binance spot pair, each containing: trade price, quantity traded, side (buy or sell), and a millisecond-precision Unix timestamp. Useful for VWAP calculations, tape reading, detecting large trades, and assessing short-term order flow direction.

## 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-4be64f31/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)
