GET
/v1/fnd/markets/:market/statusSingle market status
The same status object as the all-markets endpoint, but data is a single object instead of an array. Use this when you only care about one venue.
- 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/us_equities/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" }, "meta": { "as_of": "2026-05-20T14:30:00Z" }}Loading runner…
First load onlyParameters
ParameterDescription
Parameter
marketrequiredstring · path- Market slug (e.g. us_equities, forex, crypto). Case-insensitive.
Response fields
FieldDescription
Field
dataobject- Status for the requested market.
data.marketstring- Market slug.
data.typestring- exchange | forex | crypto.
data.is_openboolean- Whether the market is currently open.
data.statestring- closed | regular | open.
data.next_openstring (RFC 3339)- Next transition to open, UTC; omitted on crypto.
data.next_closestring (RFC 3339)- Next transition to closed, UTC; omitted on crypto.
data.timezonestring- IANA timezone of the venue; UTC for forex and crypto.
meta.as_ofstring (RFC 3339)- When the response was produced.
Error responses
StatusCodeMeaning
- 404
unknown market:market is not in our catalog. Hit /fnd/markets for the valid slug list.
{ "error": "unknown market" }