GET
/v1/marketstatus/
Market Status
Get Current Market Status
Endpoint Details
| HTTP Method | GET |
|---|---|
| Path | /v1/marketstatus/ |
| Version | v1 |
| Minimum Plan | free |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key |
string | Required | Your API key for authentication |
limit |
integer | Optional | Maximum number of results to return |
sort |
string | Optional | Sort order (asc or desc) |
Example Request
curl "https://mail.tradeiqai.com/api/v1/marketstatus/?api_key=YOUR_API_KEY"
Note: Replace YOUR_API_KEY with your actual API key.
Response Attributes
| Attribute | Type | Description |
|---|---|---|
ok | boolean | Indicates if the request was successful (e.g., 1) |
Example Response
{
"ok": true,
"data": {
"afterHours": true,
"currencies": {
"crypto": "open",
"fx": "open"
},
"earlyHours": false,
"exchanges": {
"nasdaq": "extended-hours",
"nyse": "extended-hours",
"otc": "closed"
},
"indicesGroups": {
"s_and_p": "open",
"societe_generale": "open",
"msci": "open",
"ftse_russell": "open",
"mstar": "open",
"mstarc": "open",
"cccy": "open",
"cgi": "open",
"nasdaq": "open",
"dow_jones": "closed"
},
"market": "extended-hours",
"serverTime": "2026-02-11T17:13:37-05:00"
}
}