Skip to main content
POST
/
api
/
accounts
/
{id}
/
quotes
Batch quotes
curl --request POST \
  --url https://api.easierprop.com/api/accounts/{id}/quotes \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "symbols": [
    "EURUSD",
    "GBPUSD",
    "USDJPY"
  ]
}
'
{
  "ok": true,
  "data": [
    {
      "ask": 1.08544,
      "bid": 1.08542,
      "last": 0,
      "symbol": "EURUSD",
      "time": "2026-04-01T12:30:00",
      "volume": 0
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Client API key (prefixed with sk_)

Path Parameters

id
string<uuid>
required

Account ID

Body

application/json
symbols
string[]
required
Example:
["EURUSD", "GBPUSD", "USDJPY"]

Response

200 - application/json

Quotes

ok
boolean
Example:

true

data
object[]