Skip to main content
GET
/
api
/
accounts
/
{id}
/
quote
/
{symbol}
Get quote
curl --request GET \
  --url https://api.easierprop.com/api/accounts/{id}/quote/{symbol} \
  --header 'X-API-Key: <api-key>'
{
  "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

symbol
string
required

Instrument name (e.g. EURUSD)

Response

200 - application/json

Quote

ok
boolean
Example:

true

data
object