Skip to main content
GET
/
api
/
accounts
/
{id}
/
symbols
/
{symbol}
/
sessions
Symbol trading sessions
curl --request GET \
  --url https://api.easierprop.com/api/accounts/{id}/symbols/{symbol}/sessions \
  --header 'X-API-Key: <api-key>'
{
  "ok": true,
  "data": {
    "symbol": "EURUSD",
    "quotes": [
      {
        "day": 1,
        "name": "MON",
        "windows": [
          {
            "startMin": 0,
            "endMin": 1440,
            "startTime": "00:00",
            "endTime": "24:00"
          }
        ]
      }
    ],
    "trades": [
      {
        "day": 1,
        "name": "MON",
        "windows": [
          {
            "startMin": 0,
            "endMin": 1440,
            "startTime": "00:00",
            "endTime": "24:00"
          }
        ]
      }
    ],
    "alwaysOpen": false,
    "brokerTzOffsetSecs": 7200
  }
}

Authorizations

X-API-Key
string
header
required

Client API key (prefixed with sk_)

Path Parameters

id
string<uuid>
required

Account ID

symbol
string
required

Instrument name (e.g. EURUSD)

Response

200 - application/json

Session hours

ok
boolean
Example:

true

data
object

Broker-reported trading and quote session windows for all 7 days of the week. Data is parsed from the MT5 binary protocol; accuracy depends on the broker's server configuration.