Browse the live catalog →
The authoritative list of providers, their capabilities, popular series, and any API-key requirements lives at alphacast.io/explore/apis. That page is always the source of truth — this documentation only describes how to use the API surface.
Currently supported providers
The catalog is grouped below by provider type. All slugs are case-insensitive —FRED, fred, and Fred resolve to the same provider. Use them in the API paths described later on this page.
Central banks
| Slug | Provider | API key |
|---|---|---|
banrep | Banco de la República (Colombia) | — |
banxico | Banxico — Banco de México | Required |
bcch | Banco Central de Chile (BDE) | Required |
bcra | BCRA — Banco Central de la República Argentina | — |
bcrp | BCRP — Banco Central de Reserva del Perú | — |
boc | Bank of Canada (Valet) | — |
boe | Bank of England | — |
boi | Bank of Israel | — |
ecb | European Central Bank | — |
hkma | Hong Kong Monetary Authority | — |
norges | Norges Bank | — |
taiwan-cbc | Central Bank of Taiwan (CBC DataAPI) | — |
National statistics offices
| Slug | Provider | API key |
|---|---|---|
abs | Australian Bureau of Statistics | — |
bls | U.S. Bureau of Labor Statistics | Optional |
eurostat | Eurostat | — |
faostat | FAO FAOSTAT | — |
inegi | INEGI — Instituto Nacional de Estadística y Geografía (Mexico) | Required |
insee | INSEE (France) | — |
oecd | OECD Statistics | — |
opendosm | OpenDOSM (Malaysia) | — |
scb | Statistics Sweden | — |
sidra | IBGE SIDRA (Brazil) | — |
ssb | Statistics Norway | — |
unsd | UN Statistics Division | — |
Markets and finance
| Slug | Provider | API key |
|---|---|---|
a3 | A3 Mercados (Matba/Rofex, Argentina) | — |
bcb-opendata | BCB — Banco Central do Brasil (Open Data) | — |
bis | BIS — Bank for International Settlements | — |
coingecko | CoinGecko | Optional |
mae | MAE — Mercado Abierto Electrónico (Argentina) | — |
U.S. federal agencies
| Slug | Provider | API key |
|---|---|---|
bea | U.S. Bureau of Economic Analysis | Required |
eia | U.S. Energy Information Administration | Required |
fred | Federal Reserve Economic Data (St. Louis Fed) | Required |
International organizations
| Slug | Provider | API key |
|---|---|---|
ilo | International Labour Organization | — |
imf | International Monetary Fund | — |
unicef | UNICEF Data Warehouse | — |
worldbank | World Bank Open Data | — |
Curated and other
| Slug | Provider | API key |
|---|---|---|
cepalstat | CEPALSTAT (ECLAC) | — |
owid | Our World in Data | — |
hierarchical, search, direct), parameters, and popular series for any provider, call GET /providers/{slug} or open it in the live catalog.
API endpoints
All provider endpoints are available underhttps://api.alphacast.io. Authentication uses your Alphacast API key over HTTP Basic Auth — see the authentication guide.
List and discover providers
Browse, search, and fetch series
Manage your API keys
For providers that require a key (FRED, BLS, INEGI, Banxico, BEA, EIA, BCCH), save your key once using
PUT /user-keys/{slug}. Alphacast stores it securely and passes it automatically on every subsequent request. You never need to include it in individual calls.Capability types
Each provider declares which access patterns it supports.| Capability | Description |
|---|---|
hierarchical | Browse a tree of topics, categories, or surveys to discover series |
search | Full-text search for series by name or keyword |
direct | Fetch a series directly if you already know its ID |
GET /providers/{slug} before deciding how to query it.
Complete example: list, search, and fetch
The walkthrough below shows the full flow from discovering providers to downloading data.List all providers
Retrieve the catalog to see slugs and capabilities.Each entry in the response includes
slug, name, capabilities, and license.Inspect a provider
Fetch provider detail including its parameters and popular series IDs.The response includes
popular_series (a list of well-known series IDs), parameters (optional request modifiers), and browse_root_label.Search for a series
Find a series by keyword. Only providers with the Each result contains
search capability support this endpoint.series_id and label. Use the series_id in the next step.Preview the series
Retrieve the last 24 data points to confirm you have the right series.The response includes
label, metadata (frequency, units, date range), and a data array limited to 24 observations. The is_preview: true field indicates this is a truncated response.Fetch the full series
Issue a POST to retrieve all historical data. Pass optional parameters in the request body.The response contains the same structure as the preview but with
is_preview: false and the full data array.