Trading Schedule
API Description
Trading session schedules for a one-week period starting from the day prior to the query time, covering both the U.S. equity and commodity markets. Equity market session types include "PRE_MARKET", "REGULAR", "AFTER_MARKET", "OVERNIGHT", and "NO_TRADING", while commodity market session types include "REGULAR" and "NO_TRADING".
HTTP Request
GET /fapi/v1/tradingSchedule
Request Weight
5
Request Parameters
NONE
Response Example
{
"updateTime": 1761286643918,
"marketSchedules": {
"EQUITY": {
"sessions": [
{
"startTime": 1761177600000,
"endTime": 1761206400000,
"type": "OVERNIGHT"
},
{
"startTime": 1761206400000,
"endTime": 1761226200000,
"type": "PRE_MARKET"
}
]
},
"COMMODITY": {
"sessions": [
{
"startTime": 1761724800000,
"endTime": 1761744600000,
"type": "NO_TRADING"
},
{
"startTime": 1761744600000,
"endTime": 1761768000000,
"type": "REGULAR"
}
]
}
}
}