Loading QuantGist...
Loading QuantGist...
Today we're opening the QuantGist v1 API to the public. After months of building, we have a structured economic calendar + market events API designed for the way traders actually work — not the way data vendors think they do.
The biggest quality-of-life improvement: /v1/macro/* shortcuts so you don't need to know how events are titled in the database.
# Get the latest NFP release — no need to know the exact event title
curl 'https://api.quantgist.com/v1/macro/latest?event=NFP' \
-H 'X-API-Key: YOUR_KEY'
# What's coming up in the next 14 days for CPI, NFP, and FOMC?
curl 'https://api.quantgist.com/v1/macro/calendar?events=CPI,NFP,FOMC&days=14' \
-H 'X-API-Key: YOUR_KEY'Supported aliases: NFP, CPI, PCE, FOMC, GDP, UNEMPLOYMENT, RETAIL_SALES, PPI, ISM, ECB, HICP
Every event row now carries computed quality flags so your code never has to guess whether a release has landed yet or whether a field is missing:
{
"title": "US Non-Farm Payrolls",
"actual": "177000",
"forecast": "138000",
"is_released": true,
"has_actual": true,
"has_forecast": true,
"missing_fields": []
}Filter for released events with actuals in one line: ?is_released=true&has_actual=true
Sign up for a free API key at quantgist.com/signup. Free plan includes 500 requests/day. Paid plans start at $19/month.