Crypto Market Data Tracker avatar

Crypto Market Data Tracker

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Crypto Market Data Tracker

Crypto Market Data Tracker

Snapshot live crypto market data for top coins or a custom list: price, market cap, volume, 1h/24h/7d changes, ATH and supply. Powered by CoinGecko.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Technical Dost Solutions

Technical Dost Solutions

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Capture a clean, current cryptocurrency market snapshot for finance dashboards, recurring data pipelines, portfolio research, and market monitoring. The Actor uses CoinGecko's free public API, needs no API key, and writes one dataset record per coin.

What it does

  • Fetches the top cryptocurrencies by market capitalization, or a custom list of CoinGecko coin IDs.
  • Captures live price, market cap, 24-hour volume, supply, high/low, all-time high, and 1-hour/24-hour/7-day changes.
  • Supports quote currencies such as usd, eur, and gbp.
  • Retries transient failures and waits 15 seconds before retrying an HTTP 429 response.
  • Charges the pay-per-event result event once for each stored coin when monetization is configured.

Input

FieldTypeDefaultDescription
coinIdsstring array[]CoinGecko IDs such as bitcoin and ethereum. Empty means top coins by market cap.
vsCurrencystringusdQuote currency for price and market values.
maxCoinsinteger100Maximum results, from 1 to 250.

Default input:

{
"coinIds": [],
"vsCurrency": "usd",
"maxCoins": 100
}

Custom-list example:

{
"coinIds": ["bitcoin", "ethereum", "solana"],
"vsCurrency": "usd",
"maxCoins": 3
}

Output

Each dataset item has this shape:

{
"id": "bitcoin",
"symbol": "btc",
"name": "Bitcoin",
"priceUsd": 118000,
"marketCap": 2340000000000,
"marketCapRank": 1,
"volume24h": 58000000000,
"change1hPct": 0.15,
"change24hPct": 1.9,
"change7dPct": 4.2,
"high24h": 119000,
"low24h": 115000,
"circulatingSupply": 19890000,
"ath": 122000,
"athChangePct": -3.3,
"lastUpdated": "2026-01-01T12:00:00.000Z",
"vsCurrency": "usd"
}

priceUsd contains CoinGecko's current_price in the selected vsCurrency; the field name is kept stable so downstream schemas do not change between runs. Market cap, volume, high/low, and ATH values also use the selected quote currency.

Data source and cost

This Actor calls the public CoinGecko /api/v3/coins/markets endpoint directly with native fetch. It uses no paid proxy and requires no API key.