GET
/fnd/markets/statusAll-markets status snapshot
Open / closed snapshot for every market in one call. The 'is the US market open?' question for a dashboard widget: one round trip, one response, returned in catalog order.
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/status"200OKapplication/json
{ "data": [ { "market": "us_equities", "type": "exchange", "is_open": true, "state": "regular", "next_open": "2026-05-21T13:30:00Z", "next_close": "2026-05-20T20:00:00Z", "timezone": "America/New_York" }, { "market": "jp_equities", "type": "exchange", "is_open": false, "state": "closed", "next_open": "2026-05-21T00:00:00Z", "next_close": "2026-05-21T06:30:00Z", "timezone": "Asia/Tokyo" }, { "market": "forex", "type": "forex", "is_open": true, "state": "open", "session": "london_new_york_overlap", "next_open": "2026-05-24T21:00:00Z", "next_close": "2026-05-22T21:00:00Z", "timezone": "UTC" }, { "market": "crypto", "type": "crypto", "is_open": true, "state": "open", "timezone": "UTC" } ], "meta": { "as_of": "2026-05-20T14:30:00Z" }}Loading runner…
First load onlyReference
Per-market fieldsDescription
Per-market fields
- market
- Slug.
- type
- exchange | forex | crypto.
- is_open
- Boolean. The field 95% of clients should read.
- state
- closed | regular | open. Exchanges flip between closed and regular; forex flips between closed and open; crypto is always open.
- session
- Forex only. sydney | tokyo | london | new_york | sydney_tokyo_overlap | london_new_york_overlap. Omitted when forex is closed.
- next_open
- UTC timestamp of the next transition to open. Omitted on crypto.
- next_close
- UTC timestamp of the next transition to closed. Omitted on crypto.
- timezone
- IANA zone of the venue. UTC for forex / crypto.