Skip to main content

GET /v1/flow

Time-bucketed buy/sell pressure from the Binance spot aggregate trade stream only. Futures flow is not available here — use GET /v1/candles?source=binance_futures for futures OHLCV.

Credits: Per OpenAPI (base + per row where applicable)

Tier (history depth): Free 7d · Pro 6mo · Business full

Parameters

ParameterTypeRequiredDefaultDescription
api-keystringYesX-API-Key header (recommended) or api-key query. Authentication.
symbolstringYesBTC, ETH, SOL, XRP.
intervalstringYes5m, 15m, 1h, 4h, 24h.
startstringNoISO-8601 UTC start.
endstringNoISO-8601 UTC end.
limitintegerNo500Max rows (see OpenAPI for max).
afterstringNoCursor from meta.next_cursor.

Each row includes buy_volume, sell_volume, num_buys, num_sells, vwap_buy, vwap_sell, net_volume, buy_ratio, etc. See OpenAPI/v1/flow.

Example

import requests

resp = requests.get(
    "https://kwery-api.com/v1/flow",
    headers={"X-API-Key": "YOUR_KEY"},
    params={"symbol": "BTC", "interval": "1h", "limit": 10},
)
print(resp.json())

Query parameter alternative: api-key=YOUR_KEY on the URL.