SWAGGER STYLE
MT5 Manager Explorer
Browse MT5 back-office APIs for account lifecycle, funding, and reporting.
Base URLhttps://api.metatraderapi.xyz/mt5/manager
AuthBearer manager credential
How To Test This API
Separate reporting and financial workflows during testing so you can validate permissions without risking unintended balance changes.
Use explicit request ids and operator ids to make every manager-side mutation traceable.
- Call a report or account read endpoint to verify credential scope.
- List groups, accounts, or symbols before attempting mutations.
- Use a single funding operation to confirm idempotency and audit trail capture.
- Record the resulting identifiers in your internal workflow log.
| Header | Value | Notes |
|---|---|---|
| Authorization | Bearer <manager-key> | Scoped manager credential. |
| x-operator-id | backoffice-worker | Recommended for audit records. |
| x-request-id | req_mng5_0008 | Recommended for retry-safe writes. |
Sample Request
BASH
curl https://api.metatraderapi.xyz/mt5/manager/reports/daily \
-H "Authorization: Bearer <manager-key>" \
-G --data-urlencode "date=2026-04-07"Sample Response
JSON
{
"activeAccounts": 1243,
"equity": 18200123.41,
"deposits": 941200,
"withdrawals": 631100
}Common Status Codes
| Code | Meaning | Typical Cause |
|---|---|---|
| 200 | OK | Read or update completed successfully. |
| 201 | Created | New account or transaction created. |
| 403 | Forbidden | The manager key does not have the required capability. |
| 409 | Conflict | The request duplicates an already applied change. |
| 503 | Manager Offline | The MT5 management plane is unavailable. |