GET
/v1/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.
- Auth
X-API-Keyheader- Format
- JSON
- Rate limits
- Per-key, see limits
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 onlyParameters
ParameterDescription
Parameter
regionenum · query- Filter by region. Values: north_america | europe | asia_pacific | latam | global. Case-insensitive.
Response fields
FieldDescription
Field
data[]array- One entry per supported market, in catalog order.
data[].marketstring- Market slug, the value you pass as :market on other endpoints.
data[].namestring- Human-readable display name.
data[].typestring- exchange | forex | crypto.
data[].timezonestring- IANA timezone, e.g. America/New_York, UTC.
data[].regionstring- north_america | europe | asia_pacific | latam | global.
data[].exchangesarray- ISO 10383 MIC codes; present only on type exchange, omitted on forex and crypto.
meta.as_ofstring (RFC 3339)- When the response was produced.