Crypto Price Tracker avatar

Crypto Price Tracker

Under maintenance

Pricing

Pay per usage

Go to Apify Store
Crypto Price Tracker

Crypto Price Tracker

Under maintenance

Look up current price, market cap, 24h/7d change, volume, supply, and all-time high/low for any cryptocurrency via the public CoinGecko API. For trading, portfolio, and market-research tools.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Timothy Kelvin

Timothy Kelvin

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

2 days ago

Last modified

Categories

Share

Look up current price, market cap, 24h/7d change, volume, supply, and all-time high/low for any cryptocurrency, via the public CoinGecko API.

Built for trading, portfolio, and market-research tools that need a quick price/market-cap snapshot without wiring up a full exchange API.

Input

{
"coinIds": ["bitcoin", "ethereum"],
"vsCurrency": "usd"
}
FieldTypeDescription
coinIdsarray of strings (required)One or more CoinGecko coin IDs (not ticker symbols), e.g. "bitcoin", "ethereum", "solana", "dogecoin". Find the exact ID on a coin's CoinGecko page URL.
vsCurrencystringThe fiat or crypto currency to price against, e.g. "usd", "eur", "btc". Default "usd".

Output

One record per requested coin:

{
"coinId": "bitcoin",
"found": true,
"symbol": "btc",
"name": "Bitcoin",
"vsCurrency": "usd",
"currentPrice": 64154,
"marketCap": 1287658233263,
"marketCapRank": 1,
"totalVolume": 21109041334,
"high24h": 64516,
"low24h": 63246,
"priceChangePercentage24h": 1.8,
"priceChangePercentage7d": 0.3,
"circulatingSupply": 20071518,
"totalSupply": 20071518,
"maxSupply": 21000000,
"allTimeHigh": 126080,
"allTimeHighDate": "2025-10-06T10:57:42.000Z",
"allTimeLow": 67.81,
"allTimeLowDate": "2013-07-05T16:00:00.000Z",
"lastUpdated": "2026-08-18T02:13:30.000Z"
}

An unrecognized coin ID returns { "coinId": "...", "found": false } for that entry rather than being silently dropped — CoinGecko's own API omits unknown IDs from its response with no error, so this actor detects the gap and reports it explicitly.

How it works

Direct calls to the public CoinGecko API — no proxy, no key, no scraping. The free public tier is shared and rate-limited; the actor retries with backoff on a throttle before surfacing a real error.

Pricing note

Billed per lookup (one run), not per coin returned — one charge whether you request 1 coin or 20.