cURL
curl --request GET \ --url https://api.financialdatasets.ai/crypto/prices/snapshot/market \ --header 'X-API-KEY: <api-key>'
{ "snapshots": [ { "price": 123, "ticker": "<string>", "day_change": 123, "day_change_percent": 123, "volume": 123, "time": "<string>", "time_milliseconds": 123 } ] }
Get a real-time price snapshot for every actively traded cryptocurrency pair in a single request.
GET
X-API-KEY
import requests headers = { "X-API-KEY": "your_api_key_here" } url = "https://api.financialdatasets.ai/crypto/prices/snapshot/market" response = requests.get(url, headers=headers) snapshots = response.json().get("snapshots")
{ "snapshots": [ { "ticker": "BTC-USD", "price": 76840.00, "day_change": -1105.42, "day_change_percent": -1.42, "volume": 12345.67, "time": "2026-04-27T19:11:57Z", "time_milliseconds": 1777317117000 }, { "ticker": "ETH-USD", "price": 3500.00, "day_change": 50.00, "day_change_percent": 1.45, "volume": 98765.43, "time": "2026-04-27T19:11:57Z", "time_milliseconds": 1777317117000 }, ... ] }
API key for authentication.
Crypto market snapshot response
Show child attributes