# Bitfinex Crypto Ticker Scraper - Price, Volume & 24h Change (`ninhothedev/bitfinex-scraper`) Actor

$0.5/1K 🔥 Bitfinex crypto scraper! Price, bid/ask, 24h volume & change for all pairs. No key. JSON, CSV, Excel or API in seconds. Track markets for trading, bots & portfolios ⚡

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

## Pricing

from $0.50 / 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/platform/actors/running/actors-in-store#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

## Bitfinex Crypto Ticker Scraper

Scrape **live ticker data for every trading pair on Bitfinex** — last price, bid, ask, 24-hour change %, 24-hour volume, daily high and low — in a single run. Powered by the official Bitfinex public REST API, so there is **no API key, no login, and no rate-limit headaches**.

Perfect for crypto traders, market-monitoring dashboards, trading bots, and portfolio trackers that need clean, structured price data on demand.

***

### What it does

This actor calls Bitfinex's public `v2/tickers` endpoint and returns one clean record per trading pair. It automatically skips funding-market symbols and normalizes the exchange's compact positional-array format into readable JSON.

- **All trading pairs** in one run (270+ pairs).
- **Optional symbol filter** — grab just `USD`, `BTC`, `ETH` pairs, or anything else.
- **Clean, typed output** — every numeric field parsed to a float, everything nullable.
- **Fast & cheap** — a single API call, no browser, tiny memory footprint.

### Example use cases

- **Crypto trading** — pull real-time prices and spreads for order routing.
- **Market monitoring** — feed a dashboard or alert system with 24h change and volume.
- **Trading bots** — schedule the actor and stream fresh tickers into your strategy engine.
- **Portfolio tracking** — value holdings using the latest last-price per pair.

### Input

| Field | Type | Description |
|-------|------|-------------|
| `mode` | select | What to scrape. `tickers` returns all trading pairs. |
| `symbolFilter` | string | Optional case-insensitive substring filter on the pair symbol, e.g. `USD`. Leave empty for all pairs. |
| `maxItems` | integer | Max records to store. Default `500`, max `5000`. |

#### Example input

```json
{
  "mode": "tickers",
  "symbolFilter": "USD",
  "maxItems": 500
}
```

### Output

Each dataset item looks like this:

```json
{
  "symbol": "BTCUSD",
  "last_price": 63947.0,
  "bid": 63949.0,
  "ask": 63966.0,
  "daily_change": -973.0,
  "change_pct_24h": -1.5,
  "volume_24h": 1072.39944949,
  "high_24h": 65848.0,
  "low_24h": 63759.0,
  "source": "bitfinex",
  "scraped_at": "2026-07-24T12:00:00+00:00"
}
```

| Field | Description |
|-------|-------------|
| `symbol` | Trading pair, with the leading `t` stripped (e.g. `BTCUSD`). |
| `last_price` | Last traded price. |
| `bid` / `ask` | Best bid / best ask. |
| `daily_change` | Absolute 24h price change. |
| `change_pct_24h` | 24h change in percent, rounded to 2 decimals. |
| `volume_24h` | 24h trading volume (in the base currency). |
| `high_24h` / `low_24h` | 24h high / low. |
| `source` | Always `bitfinex`. |
| `scraped_at` | UTC ISO-8601 timestamp of the scrape. |

### Pricing

Runs are cheap — a single lightweight API call. Expect roughly **~$0.50 per 1,000 runs** on the Apify platform depending on your plan. Schedule it as often as you need for near-real-time data.

### Related crypto scrapers

- [OKX Scraper](https://apify.com/ninhothedev/okx-scraper)
- [Kraken Crypto Scraper](https://apify.com/ninhothedev/kraken-crypto-scraper)
- [KuCoin Scraper](https://apify.com/ninhothedev/kucoin-scraper)
- [Coinbase Crypto Scraper](https://apify.com/ninhothedev/coinbase-crypto-scraper)

### FAQ

**Do I need a Bitfinex API key?** No. This uses the public market-data endpoint only.

**How fresh is the data?** It reflects Bitfinex's live ticker at the moment of the run.

**Can I get a single pair?** Yes — set `symbolFilter` to the exact symbol, e.g. `BTCUSD`.

**Is funding-market data included?** No, only trading pairs are returned.

# Actor input Schema

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

What to scrape. Currently 'tickers' returns every Bitfinex trading pair with its live price, 24h change, and volume.

## `symbolFilter` (type: `string`):

Optional case-insensitive substring filter on the pair symbol. For example 'USD' returns only USD-quoted pairs, 'BTC' returns pairs that contain BTC. Leave empty to return all trading pairs.

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

Maximum number of ticker records to store in the dataset. Default 500, maximum 5000.

## Actor input object example

```json
{
  "mode": "tickers",
  "symbolFilter": "USD",
  "maxItems": 500
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("ninhothedev/bitfinex-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 = {}

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

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

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

```

## CLI example

```bash
echo '{}' |
apify call ninhothedev/bitfinex-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=ninhothedev/bitfinex-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/JanxlQeSlrVPQUKKT/builds/pqnCoej4S848PoSIB/openapi.json
