v1
latestOpenAPI 3.1.02026-07-241653251.3 MBList transfers
Retrieves a list of objects containing information about transfers. This endpoint supports pagination and filtering based on the below parameters. Results are limited to the last 2 months.
Query parameters
Filters for a specific page (pagination)
Filter for number of transfer objects to be included on each page
Filter for to_participant_code in receipt of the transfer
Filter for from_participant_code the transfer was sent from
Filter for greater than a given timestamp
Filter for greater than or equal to a given timestamp
Filter for equal to a given timestamp
Filter for less than a given timestamp
Filter for less than or equal to a given timestamp
Filter for client_transfer_id associated with the transfer
Filter by the source account group of the transfer.
Filter by the source account label of the transfer.
Filter by the destination account group of the transfer.
Filter by the destination account label of the transfer.
The underlying asset in the trading pair. E.g. BTC in the pair BTC/USD.
Filter by the asset code of the transfer, e.g. USD.
Headers
HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.
Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.
Response
Successfully retrieved paginated list of transfers with optional filters: page, page_size, to_participant_code, from_participant_code, requested_timestamp filters, client_transfer_id.
Example response
{
"message": [
{
"id": 1152665,
"created_at": "2026-05-04T11:58:50.115Z",
"updated_at": "2026-05-04T11:58:50.115Z",
"status": "approved",
"from_participant_code": "ABCDEF",
"from_account_group": "ABCDEF",
"from_account_label": "general",
"to_participant_code": "DEMO01",
"to_account_group": "ABCDEF",
"to_account_label": "general",
"asset": "USD",
"amount": "100.00",
"client_transfer_id": "e6afed46-301e-46ee-a339-e897e9855c3a",
"parent_link_id_source": "LINK_SOURCE_PREFUNDED_TRANSFER"
}
],
"page": 1,
"page_size": 15,
"total_pages": 1,
"count": 1
}