List all transfers, optionally filtering and paging the results.
By default, transfers are returned in reverse chronological (descending) order by creation time.
The recommended polling workflow is to query the results in ascending
order (by setting order_by
to CREATED_AT
), keeping track of the
created_at
timestamp of the most recent transfer in the paged results.
Once transfers are discovered, the caller should store the returned ID
and query GetTransfer to retrieve status updates.
Paxos APIs use OAuth 2 with the client credentials grant flow.
Token URLs:
Learn more in the API credentials guide →
Optionally filter by the target profiles of the transfers. Limit 100. Can be combined with created_at.* or updated_at.* filtering options only.
Optionally filter by the Identities associated with the transfers. Limit 100. Can be combined with created_at.* or updated_at.* filtering options only.
The client-specified IDs provided during transfer creation. Limit 100. Can be combined with created_at.* or updated_at.* filtering options only.
Include timestamps strictly less than lt. RFC3339 format, like 2006-01-02T15:04:05Z
.
Include timestamps less than or equal to lte. RFC3339 format, like 2006-01-02T15:04:05Z
.
Include timestamps exactly equal to eq. RFC3339 format, like 2006-01-02T15:04:05Z
.
Include timestamps greater than or equal to lte. RFC3339 format, like 2006-01-02T15:04:05Z
.
Include timestamps strictly greater than gt. RFC3339 format, like 2006-01-02T15:04:05Z
.
Include timestamps strictly less than lt. RFC3339 format, like 2006-01-02T15:04:05Z
.
Include timestamps less than or equal to lte. RFC3339 format, like 2006-01-02T15:04:05Z
.
Include timestamps exactly equal to eq. RFC3339 format, like 2006-01-02T15:04:05Z
.
Include timestamps greater than or equal to lte. RFC3339 format, like 2006-01-02T15:04:05Z
.
Include timestamps strictly greater than gt. RFC3339 format, like 2006-01-02T15:04:05Z
.
Number of results to return. Defaults to 100 if no limit is provided. Maximum 1000.
Determines whether the items are returned in ascending (ASC), or descending (DESC) order.
Defaults to ASC if order_by
is UPDATED_AT. Otherwise defaults to DESC.
DESC
, ASC
The specific method by which the returned results will be ordered.
When specifying both order_by
and a timestamp filter, order_by
must equal the timestamp filter type.
For example:
updated_at.gte = 2022-07-01T03:02:01Z
, order_by = UPDATED_AT
Using updated_at.gte = 2022-07-01T03:02:01Z
, order_by = CREATED_AT
is an invalid pairing.
CREATED_AT
, UPDATED_AT
Optional: Cursor for getting the next page of results. When the number of items returned is fewer than the limit, there is currently no next page.
Optionally filter by the Accounts associated with the transfers. Limit 100. Can be combined with created_at.* or updated_at.* filtering options only.
Optionally filter by the transfer ids. Limit 100. Can be combined with created_at.* or updated_at.* filtering options only.
Retrieve all (default) or the specified transfers.
Optionally filter by transfer type
.
To retrieve multiple transfer types, use query parameters: e.g., type=CRYPTO_DEPOSIT&type=CRYPTO_WITHDRAWAL
.
Can be combined with created_at.*
or updated_at.*
filtering options only.
Optionally filter by transfer group_ids
. Limit 100.
Optionally filter by the on-chain transaction hash for crypto transactions. Limit 100.
Optionally filter by secondary status.
Optionally filter by status.
A successful response.
The response is of type object
.