Skip to main content
GET
/
api
/
accounts
List accounts
curl --request GET \
  --url https://api.easierprop.com/api/accounts \
  --header 'X-API-Key: <api-key>'
{
  "ok": true,
  "data": [
    {
      "id": "70f60784-20f1-45ba-9a04-8e01c0b810c3",
      "label": "ICMarkets Demo",
      "broker_host": "mt5-demo.icmarkets.com",
      "broker_port": 443,
      "server_name": "ICMarketsSC-Demo",
      "mt5_login": 51234567,
      "is_enabled": true,
      "auto_connect": false,
      "hardware_id": "<string>",
      "has_proxy": false,
      "session_status": "disconnected",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.easierprop.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Client API key (prefixed with sk_). On /api/* endpoints the key is scoped to its own MT5 accounts. On /admin/* endpoints the key identifies its owning admin and grants access to all of that admin's keys — so any of your sk_ works to manage any of your other keys (cross-admin operations are rejected as 400 Key not found).

Response

Account list

ok
boolean
Example:

true

data
object[]