cURL
curl --request GET \ --url https://api.financialdatasets.ai/prices/snapshot/market \ --header 'X-API-KEY: <api-key>'
{ "snapshots": [ { "price": 123, "ticker": "<string>", "day_change": 123, "day_change_percent": 123, "time": "<string>", "time_milliseconds": 123 } ] }
Get a real-time price snapshot for every actively traded US stock in a single request.
GET
X-API-KEY
import requests headers = { "X-API-KEY": "your_api_key_here" } url = "https://api.financialdatasets.ai/prices/snapshot/market" response = requests.get(url, headers=headers) snapshots = response.json().get("snapshots")
{ "snapshots": [ { "ticker": "BIRD", "price": 15.26, "day_change": 12.77, "day_change_percent": 512.85, "time": "2026-04-15T22:06:27Z", "time_milliseconds": 1776290787600 }, { "ticker": "BDRX", "price": 3.29, "day_change": 0.04, "day_change_percent": 1.23, "time": "2026-04-15T22:06:25Z", "time_milliseconds": 1776290785553 }, { "ticker": "SKYQ", "price": 11.05, "day_change": 1.85, "day_change_percent": 20.11, "time": "2026-04-15T22:06:25Z", "time_milliseconds": 1776290785498 }, ... ] }
API key for authentication.
Market snapshot response
Show child attributes