Bitfinex Crypto Ticker Scraper - Price, Volume & 24h Change avatar

Bitfinex Crypto Ticker Scraper - Price, Volume & 24h Change

Pricing

from $0.50 / 1,000 results

Go to Apify Store
Bitfinex Crypto Ticker Scraper - Price, Volume & 24h Change

Bitfinex Crypto Ticker Scraper - Price, Volume & 24h Change

$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 ⚑

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

ninhothedev

ninhothedev

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

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

FieldTypeDescription
modeselectWhat to scrape. tickers returns all trading pairs.
symbolFilterstringOptional case-insensitive substring filter on the pair symbol, e.g. USD. Leave empty for all pairs.
maxItemsintegerMax records to store. Default 500, max 5000.

Example input

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

Output

Each dataset item looks like this:

{
"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"
}
FieldDescription
symbolTrading pair, with the leading t stripped (e.g. BTCUSD).
last_priceLast traded price.
bid / askBest bid / best ask.
daily_changeAbsolute 24h price change.
change_pct_24h24h change in percent, rounded to 2 decimals.
volume_24h24h trading volume (in the base currency).
high_24h / low_24h24h high / low.
sourceAlways bitfinex.
scraped_atUTC 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.

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.