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
}
]
}Fetch bid/ask quotes for multiple symbols in one request.
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
}
]
}Client API key (prefixed with sk_)
Account ID
["EURUSD", "GBPUSD", "USDJPY"]