Skip to main content
GET
/
v1
/
status
/
market
Get Current Market Status
curl --request GET \
  --url https://api.gm.ondo.finance/v1/status/market \
  --header 'x-api-key: <api-key>'
{
  "timestamp": "2025-08-20T21:03:02Z",
  "isOpen": true,
  "marketStatus": "postmarket",
  "nextOpenSession": "overnight",
  "nextOpen": "2025-08-21T00:05:00Z",
  "nextClose": "2025-08-20T23:59:00Z",
  "reason": null
}

Authorizations

x-api-key
string
header
required

Response

OK

timestamp
string
required

The UTC timestamp of the market status check in ISO 8601 format.

Example:

"2025-08-20T21:03:02Z"

isOpen
boolean
required

Indicates whether the market is currently open or closed to trading.

Example:

true

marketStatus
enum<string>
required

The current status of the market.

Available options:
regular,
premarket,
postmarket,
overnight,
paused,
closed
Example:

"postmarket"

nextOpenSession
enum<string>
required

The next market open session of the market.

Available options:
regular,
premarket,
postmarket,
overnight
Example:

"overnight"

nextOpen
string

The next market open time in ISO 8601 format (UTC).

Example:

"2025-08-21T00:05:00Z"

nextClose
string

The next market close time in ISO 8601 format (UTC).

Example:

"2025-08-20T23:59:00Z"

reason
object

Reason for market closure or pause.

Example:

null