Quick Start
Your first API request in 2 minutes
Trial via site proxy (no API key)
Get database statistics:
curl "https://econdash.org/api/proxy?path=/api/v1/stats"
Response: JSON with total_indicators, total_countries, total_data_points, etc.
Get time series (trial)
Trial: use ?country= (required) with one of USA, CHN, DEU, JPN, GBR, FRA, IND, BRA, RUS, KOR.
curl "https://econdash.org/api/proxy?path=/api/v1/timeseries/{code}&country=USA&limit=5"
Subscribed users — direct API
With an active subscription, create an API key in the dashboard and call the data API on the same host as the site (Nginx forwards /api/v1/* to the backend):
https://econdash.org/api/v1/...Authenticate with a Bearer token (the raw key string):
Authorization: Bearer ed_your_key_hereThe generic site proxy is intended for anonymous trial traffic; for paid access, https://econdash.org/api/v1/... with your key hits FastAPI directly and skips the Next.js proxy.
AI agents — x402 & MPP
Programmatic pay-per-call access uses /api/v1/m2m/... on the website origin (payment headers must flow through the M2M route). See Agent payments (x402 & MPP) and the official specs: x402, MPP.