Cryptocurrency Price Tracker - Coinbase
Pricing
Pay per usage
Go to Apify Store

Cryptocurrency Price Tracker - Coinbase
Fetch live cryptocurrency tickers or historical OHLCV candles for Coinbase products such as BTC-USD and ETH-USD. Keyless public API with bid, ask, volume, trade, and candle fields.
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Mori
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
Cryptocurrency Price Tracker
Live and historical cryptocurrency prices from Coinbase Exchange public API.
Tickers and OHLCV candles for any Coinbase product (e.g. BTC-USD, ETH-USD,
SOL-USD, DOGE-USD).
What it does
- Fetches live ticker (bid / ask / last-trade / 24h volume) for each product ID.
- Fetches historical OHLCV candles at Coinbase-supported granularities (60s, 5m, 15m, 1h, 6h, 1d).
- Pure-JSON API wrapper — no browser, no proxy, no credentials.
Input
| Field | Required | Default | Description |
|---|---|---|---|
productIds | yes | BTC-USD,ETH-USD | Comma- or pipe-separated Coinbase product IDs |
mode | no | ticker | ticker or candles |
granularity | no | 3600 | Candle size in seconds (ignored in ticker mode) |
maxItems | no | 10 | Cap on total records emitted (1–100) |
Output
One record per product (ticker mode) or per candle (candles mode). Ticker record:
{"productId": "BTC-USD","mode": "ticker","price": "64152.43","bid": "64152.43","ask": "64152.44","volume": "2581.03105727","tradeId": "1054802265","time": "2026-07-12T20:25:13.129347538Z","sourceUrl": "https://api.exchange.coinbase.com/products/BTC-USD/ticker","fetchedAt": "2026-07-12T20:25:14.000Z"}
Candle record:
{"productId": "BTC-USD","mode": "candles","granularity": "3600","intervalStart": "2026-07-12T20:00:00.000Z","open": "64193.87","high": "64219.68","low": "64130.1","close": "64155.48","volume": "17.15557691","sourceUrl": "https://api.exchange.coinbase.com/products/BTC-USD/candles?granularity=3600","fetchedAt": "2026-07-12T20:25:14.000Z"}
Source
- Coinbase Exchange public REST API —
https://api.exchange.coinbase.com - Keyless, no auth, no captcha, no rate-limit wall on free tier.
Changelog
- 0.1.0 — initial release.