Skip to main content
GET
/
api
/
accounts
/
{id}
/
market-status
Market status
curl --request GET \
  --url https://api.easierprop.com/api/accounts/{id}/market-status \
  --header 'X-API-Key: <api-key>'
{
  "ok": true,
  "data": [
    {
      "symbol": "EURUSD",
      "tradeable": true,
      "bid": 1.08542,
      "ask": 1.08544,
      "spread_points": 2,
      "spread_pips": 0.2,
      "digits": 5
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Client API key (prefixed with sk_)

Path Parameters

id
string<uuid>
required

Account ID

Query Parameters

symbols
string
required

Comma-separated symbol list

Response

200 - application/json

Market status

ok
boolean
Example:

true

data
object[]