Skip to main content
GET
/
api
/
accounts
/
{id}
/
summary
Account summary
curl --request GET \
  --url https://api.easierprop.com/api/accounts/{id}/summary \
  --header 'X-API-Key: <api-key>'
{
  "ok": true,
  "data": {
    "balance": 10000,
    "credit": 0,
    "currency": "USD",
    "equity": 10142.5,
    "freeMargin": 9642.5,
    "isInvestor": false,
    "leverage": 100,
    "margin": 500,
    "marginLevel": 2028.5,
    "method": "Exchange",
    "profit": 142.5,
    "type": "Hedging"
  }
}

Authorizations

X-API-Key
string
header
required

Client API key (prefixed with sk_)

Path Parameters

id
string<uuid>
required

Account ID

Response

200 - application/json

Account summary

ok
boolean
Example:

true

data
object