Skip to main content
POST
/
api
/
accounts
/
{id}
/
symbols
/
batch
Batch symbol specs
curl --request POST \
  --url https://api.easierprop.com/api/accounts/{id}/symbols/batch \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "symbols": [
    "EURUSD",
    "GBPUSD",
    "USDJPY"
  ]
}
'
{
  "ok": true,
  "data": [
    {}
  ]
}

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

Symbol specs

ok
boolean
Example:

true

data
object[]