Order history
Returns the raw mt5rest history payload for the given date range.
Closed positions are returned as a list of Deal entries inside
data.internalDeals — each deal is one execution leg (entry or
exit), linked to its position via positionTicket.
To reconstruct full closed trades, pair In/Out deals by
positionTicket client-side, or call
GET /accounts/{id}/positions/{ticket}/fills for a single position
to fetch both legs in one call.
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
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
Account ID
Query Parameters
Start datetime in YYYY-MM-DDTHH:mm:ss (broker timezone).
ISO-8601 inputs from Date.toISOString() (with trailing .SSSZ)
are accepted — the gateway normalizes them. Malformed values
return 400 INVALID_REQUEST instead of an empty result.
End datetime (YYYY-MM-DDTHH:mm:ss). Same normalization rules as from.