# Binance Crypto Scraper – Prices, 24h Stats & OHLC (`ninhothedev/binance-crypto-scraper`) Actor

$0.35/1K 🔥 Fast Binance crypto scraper! Live prices, 24h stats, order books & klines for every trading pair. JSON, CSV, Excel or API in seconds. Enter symbols & pull thousands of market data points for bots & analysis ⚡

- **URL**: https://apify.com/ninhothedev/binance-crypto-scraper.md
- **Developed by:** [ninhothedev](https://apify.com/ninhothedev) (community)
- **Categories:** Developer tools, Automation
- **Stats:** 2 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.35 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Binance Crypto Scraper – Prices, 24h Stats & OHLC

**Get clean Binance market data: live prices, 24h ticker stats (high, low, volume, % change) and OHLC kline history for any trading pair. As JSON, CSV or Excel. Free, no API key, no proxy.**

### 💵 Pricing

**Pay per result — $0.0005 per item ($0.50 / 1,000).** No subscription, no proxy needed. You only pay for the data you scrape, and new Apify accounts include free monthly credits so you can test it for **$0**.

### 🔎 What can it extract?

- **Live price** for any symbol (e.g. BTCUSDT, ETHUSDT)
- **24h ticker stats**: last, open, high, low, price change, % change
- **Volume**: base volume, quote volume, trade count
- **Bid / ask** prices
- **OHLC klines** (candles) for any interval: 1m, 5m, 15m, 1h, 4h, 1d, 1w
- **Top-by-volume** discovery: auto-rank the top N USDT pairs

### 🚀 How do I use it?

1. Click **Try for free**.
2. Set the input (see example below).
3. Click **Start** and download results as JSON, CSV or Excel — or pull them via the API / schedule them on an interval.

### ⚙️ Input example

```json
{
  "mode": "tickers",
  "symbols": ["BTCUSDT", "ETHUSDT"]
}
```

Get OHLC candle history instead:

```json
{
  "mode": "klines",
  "symbols": ["BTCUSDT"],
  "interval": "1d",
  "limit": 100
}
```

Discover the top 20 pairs by volume:

```json
{
  "mode": "tickers",
  "symbols": [],
  "topByVolume": 20
}
```

### 📦 Output example

A `tickers` item:

```json
{
  "symbol": "BTCUSDT",
  "last_price": 60289.59,
  "price_change": 641.59,
  "price_change_percent": 1.076,
  "high_24h": 60780.57,
  "low_24h": 58900.01,
  "open_price": 59648.0,
  "volume": 19750.123,
  "quote_volume": 1180000000.55,
  "trade_count": 1234567,
  "bid_price": 60289.59,
  "ask_price": 60289.6,
  "scraped_at": "2026-06-29T12:00:00+00:00"
}
```

A `klines` item (one per symbol, candles nested):

```json
{
  "symbol": "BTCUSDT",
  "interval": "1d",
  "candle_count": 100,
  "candles": [
    { "open_time_iso": "2026-06-27T00:00:00+00:00", "open": 60000.0, "high": 61000.5, "low": 59500.1, "close": 60500.25, "volume": 1234.5 }
  ]
}
```

### 🎯 Use cases

- Crypto dashboards & portfolio trackers
- Trading bots & backtesting (OHLC history)
- Price alerts & automation workflows
- Market-data and research datasets

### 💰 How much will it cost?

You pay only the per-result price (no proxy cost):
100 → ~$0.05 · 1,000 → ~$0.50 · 10,000 → ~$5

### 🆚 Why this one

| Feature | This actor | Others |
|---|---|---|
| Prices + 24h stats + OHLC | ✅ | partial |
| Top-by-volume discovery | ✅ | ❌ |
| No key, no proxy | ✅ | sometimes |
| Auto host fallback | ✅ | ❌ |

### 🔗 Related actors

- [CoinGecko Crypto Scraper](https://apify.com/ninhothedev/coingecko-crypto-scraper) — coin prices & market caps
- [Yahoo Finance Scraper](https://apify.com/ninhothedev/yahoo-finance-scraper) — stocks & quotes
- [GitHub Scraper](https://apify.com/ninhothedev/github-scraper) — repos & devs
- [Hacker News Scraper](https://apify.com/ninhothedev/hacker-news-scraper) — tech news

### ❓ FAQ

**Key/proxy?** No. **Which pairs?** Any Binance spot symbol (BTCUSDT, ETHBTC, …). **History?** Yes — use mode=klines with an interval and limit.

### 🛟 Support

Found a bug or need an extra field? Open an issue on the actor — fixes and new fields ship fast.

### Legal & privacy

Data via the Binance public REST API. Public, aggregated market data only — no personal data.

***

**Keywords:** binance scraper, crypto price scraper, cryptocurrency market data, OHLC, klines, candlestick data, 24h ticker, trading bot data, BTC ETH price, JSON CSV Excel

# Actor input Schema

## `mode` (type: `string`):

What to fetch: 'tickers' (24h stats), 'prices' (latest price only), or 'klines' (OHLC candle history).

## `symbols` (type: `array`):

Trading pairs to scrape, e.g. \["BTCUSDT","ETHUSDT"]. Required for 'klines'. For 'tickers'/'prices', leave empty to fetch all symbols (or use Top by volume).

## `interval` (type: `string`):

Candle interval for mode=klines.

## `limit` (type: `integer`):

Number of OHLC candles per symbol (mode=klines).

## `topByVolume` (type: `integer`):

If Symbols is empty (mode=tickers), return the top N USDT pairs ranked by 24h quote volume. 0 = disabled (all symbols).

## `maxItems` (type: `integer`):

Maximum number of dataset items to push.

## Actor input object example

```json
{
  "mode": "tickers",
  "symbols": [
    "BTCUSDT",
    "ETHUSDT"
  ],
  "interval": "1d",
  "limit": 100,
  "topByVolume": 0,
  "maxItems": 200
}
```

# Actor output Schema

## `marketData` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "mode": "tickers",
    "symbols": [
        "BTCUSDT",
        "ETHUSDT"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ninhothedev/binance-crypto-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "mode": "tickers",
    "symbols": [
        "BTCUSDT",
        "ETHUSDT",
    ],
}

# Run the Actor and wait for it to finish
run = client.actor("ninhothedev/binance-crypto-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "tickers",
  "symbols": [
    "BTCUSDT",
    "ETHUSDT"
  ]
}' |
apify call ninhothedev/binance-crypto-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,ninhothedev/binance-crypto-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/7pI35nxC73h8iD0zl/builds/YOWmTyo14Hx9a3axG/openapi.json
