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.

  1. Call a report or account read endpoint to verify credential scope.
  2. List groups, accounts, or symbols before attempting mutations.
  3. Use a single funding operation to confirm idempotency and audit trail capture.
  4. Record the resulting identifiers in your internal workflow log.
HeaderValueNotes
AuthorizationBearer <manager-key>Scoped manager credential.
x-operator-idbackoffice-workerRecommended for audit records.
x-request-idreq_mng5_0008Recommended 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

CodeMeaningTypical Cause
200OKRead or update completed successfully.
201CreatedNew account or transaction created.
403ForbiddenThe manager key does not have the required capability.
409ConflictThe request duplicates an already applied change.
503Manager OfflineThe MT5 management plane is unavailable.