Skip to main content
GET
/
v1
/
market
/
calendars
Trading Calendars
curl --request GET \
  --url https://api.roxom.com/v1/market/calendars \
  --header 'X-API-Key: <api-key>' \
  --header 'X-API-Signature: <api-key>'
{
  "data": {
    "calendars": [
      {
        "closeHour": "<string>",
        "code": "<string>",
        "holidays": [
          {
            "date": "<string>",
            "description": "<string>",
            "earlyCloseTime": "<string>",
            "lateOpenTime": "<string>"
          }
        ],
        "id": "<string>",
        "name": "<string>",
        "openDayBefore": true,
        "openHour": "<string>",
        "openOnWeekends": true,
        "timezone": "<string>"
      }
    ]
  },
  "error": true
}

Authorizations

X-API-Key
string
header
required

Your API key

X-API-Signature
string
header
required

The signature of the request

Response

200 - application/json

Represents a successful API response wrapper

data
object
required
error
boolean
required
Last modified on March 17, 2026