Skip to main content
GET
/
api
/
accounts
/
{id}
/
performance
Performance metrics
curl --request GET \
  --url https://api.easierprop.com/api/accounts/{id}/performance \
  --header 'X-API-Key: <api-key>'
{
  "ok": true,
  "data": {
    "total_trades": 11,
    "winning_trades": 6,
    "losing_trades": 5,
    "win_rate": 54.5,
    "total_profit": 269,
    "total_loss": 126.5,
    "net_profit": 142.5,
    "profit_factor": 2.13,
    "avg_win": 45.2,
    "avg_loss": 25.3,
    "best_trade": 120,
    "worst_trade": -50,
    "avg_trade_duration_secs": 3600
  }
}

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).

Path Parameters

id
string<uuid>
required

Account ID

Query Parameters

from
string
required

Start datetime (YYYY-MM-DDTHH:mm:ss)

Response

200 - application/json

Performance

ok
boolean
Example:

true

data
object