GET
/fnd/marketsList markets
The catalog of every supported market: slug, display name, type (exchange / forex / crypto), IANA timezone, region, and the constituent ISO 10383 MIC codes for equity markets.
Parameters
ParameterDescription
Parameter
regionenum · query- Filter by region. Values: north_america | europe | asia_pacific | latam | global. Case-insensitive.
Example
request · shell
curl -H "X-API-Key: $KEY" \
"https://api.sifting.io/v1/fnd/markets?region=north_america"200OKapplication/json
{ "data": [ { "market": "us_equities", "name": "United States Equities", "type": "exchange", "timezone": "America/New_York", "region": "north_america", "exchanges": ["XNYS", "XNAS", "ARCX"] }, { "market": "ca_equities", "name": "Canada Equities", "type": "exchange", "timezone": "America/Toronto", "region": "north_america", "exchanges": ["XTSE"] }, { "market": "mx_equities", "name": "Mexico Equities", "type": "exchange", "timezone": "America/Mexico_City", "region": "north_america", "exchanges": ["XMEX"] } ], "meta": { "as_of": "2026-05-20T14:30:00Z" }}Loading runner…
First load onlyReference
Per-market fieldsDescription
Per-market fields
- market
- Slug, the value you pass as :market on other endpoints (e.g. us_equities).
- name
- Human-readable display name.
- type
- exchange | forex | crypto.
- timezone
- IANA zone (e.g. America/New_York, Europe/London, UTC).
- region
- One of the values listed above.
- exchanges
- Array of ISO 10383 MIC codes. Only on type: 'exchange'; omitted on forex / crypto.