GET /v1/ticker
Sub-second 1-second best bid/ask snapshots for Binance spot and Binance futures.
Requires Pro plan or above (per OpenAPI).
Credits: 50 base + 5 per row
Symbols: BTC, ETH, SOL, XRP
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
api-key | string | Yes | — | X-API-Key header (recommended) or api-key query. |
symbol | string | Yes | — | Asset symbol. |
source | string | Yes | — | binance or binance_futures. |
start | string | No | — | ISO-8601 UTC start (inclusive). |
end | string | No | — | ISO-8601 UTC end (inclusive). |
limit | integer | No | 60 | Max rows (see OpenAPI; max 3600). |
after | string | No | — | Cursor from meta.next_cursor. |
Example
import requests
resp = requests.get(
"https://kwery-api.com/v1/ticker",
headers={"X-API-Key": "YOUR_KEY"},
params={"symbol": "BTC", "source": "binance", "limit": 30},
)
print(resp.json())Query parameter alternative: api-key=YOUR_KEY on the URL.
Full response schema: OpenAPI → /v1/ticker.