v1

latestOpenAPI 3.0.02026-07-26117342409.6 KB
Crypto Withdrawals

List Crypto Destination Addresses

List all crypto destination addresses, optionally filtering and paging the results

get/transfer/crypto-destination-addresses

Query parameters

idsstring[]

Optionally filter by the UUIDs of the crypto destination addresses. Limit 100.

identity_idsstring[]

Optionally filter by the Identities the destination addresses are scoped to. Limit 100.

crypto_networksstring[]

Optionally filter by the crypto_network of the destination addresses. Limit 100.

addressesstring[]

Optionally filter by specific addresses. Limit 100.

nicknamesstring[]

Optionally filter by specific nicknames. Limit 100.

bookmarked_statusboolean

Optionally filter by bookmarked status. If omitted, addresses regardless of bookmarked status will be returned.

created_at.ltstring date-time

Include timestamps strictly less than lt. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.ltestring date-time

Include timestamps less than or equal to lte. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.eqstring date-time

Include timestamps exactly equal to eq. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.gtestring date-time

Include timestamps greater than or equal to gte. RFC3339 format, like 2006-01-02T15:04:05Z.

created_at.gtstring date-time

Include timestamps strictly greater than gt. RFC3339 format, like 2006-01-02T15:04:05Z.

limitinteger

Number of results to return. Defaults to 100 if no limit is provided. Maximum 1000.

order'DESC' | 'ASC'

Return items in ascending (ASC) or descending (DESC) order. Defaults to DESC.

order_by'CREATED_AT'

The specific method by which the returned results will be ordered.

page_cursorstring

Optional cursor for getting the next page of results.

Response

A successful response.

next_page_cursorstring

Example response

{
  "addresses": [
    {
      "id": "31f20a34-c1eb-4c86-adad-1e46bc271e1a",
      "crypto_network": "ETHEREUM",
      "address": "0xe4B0aCA9FB669817775274775b20e52118595515",
      "nickname": "my_new_address",
      "status": "APPROVED",
      "created_at": "2024-01-01T00:00:00Z",
      "bookmarked": true
    }
  ]
}