Binance Exchange rate Scraper
Pricing
from $10.00 / 1,000 results
Go to Apify Store

Binance Exchange rate Scraper
Binance Public Market Data — Crypto Tickers & Order Books Real-time crypto data from Binance Modes * ticker24h — 24h price change stats * price — Latest price snapshot * orderbook — Bids, asks, spread, depth * trades — Recent trades with side * klines — OHLCV candlesticks (1s–1M)
Pricing
from $10.00 / 1,000 results
Rating
0.0
(0)
Developer
Jamshaid Arif
Maintained by Community
Actor stats
0
Bookmarked
1
Total users
0
Monthly active users
19 hours ago
Last modified
Categories
Share
Binance Public Market Data — Crypto Tickers & Order Books
Real-time crypto market data from Binance's public REST API v3. No API key required.
Modes
| Mode | Endpoint | Description |
|---|---|---|
ticker24h | /ticker/24hr | 24-hour price change stats for one or more symbols |
price | /ticker/price | Latest price snapshot |
orderbook | /depth | Order book with bids, asks, spread, depth ratio |
trades | /trades | Recent trades with buy/sell side labeling |
klines | /klines | OHLCV candlestick data (16 intervals from 1s to 1M) |
multiTicker | /ticker/24hr | All trading pairs ranked by 24h quote volume |
exchangeInfo | /exchangeInfo | Trading pair rules, filters, and permissions |
Local testing (VS Code)
pip install httpxpython src/main.py
This runs 6 built-in tests covering every mode. No Apify SDK needed locally — it auto-detects the environment.
Input examples
Single ticker
{ "mode": "ticker24h", "symbols": "BTCUSDT" }
Multi-symbol order books
{ "mode": "orderbook", "symbols": "BTCUSDT,ETHUSDT,SOLUSDT", "orderbookDepth": 50 }
Hourly candles
{ "mode": "klines", "symbols": "ETHUSDT", "klineInterval": "4h", "limit": 200 }
Top 20 by volume
{ "mode": "multiTicker", "limit": 20 }
Output enrichment
- 24h tickers: float conversions, formatted volume display (
$1.23B) - Order books: spread, spread%, bid/ask depth totals, bid/ask ratio
- Klines: ISO timestamps, float OHLCV fields
- Trades: buy/sell side label derived from
isBuyerMaker