Get trades (admin)
Limit: 10 requests per 1 second
GET /v1/admin/trades
Return client’s trades history within a time range for admin usage.
Only return the latest 500 entries.
Supports two query modes:
- Per-user mode: Provide either
user_accountoruser_address.start_tandend_tare optional. - Broker mode: Omit both
user_accountanduser_address. Bothstart_tandend_tare required, and the time range cannot exceed 180 days.
Headers
Timestamp of the signed request in milliseconds.
Account ID of the authenticated account.
Public orderly key used to sign the request.
Signature of the request payload generated with the orderly key.
Query Parameters
Start of the query range as a 13-digit Unix timestamp in milliseconds. Required in broker mode and optional in per-user mode. The broker-mode range cannot exceed 180 days.
End of the query range as a 13-digit Unix timestamp in milliseconds. Required in broker mode and optional in per-user mode. The broker-mode range cannot exceed 180 days.
the page you wish to query. start from 1
the page size you wish to query. (max: 500)
Target user account for per-user mode. Provide either user_account or user_address. Omit both to use broker mode, which requires start_t and end_t.
Target user address for per-user mode. Provide either user_address or user_account. Omit both to use broker mode, which requires start_t and end_t.