Skip to main content
GET
/
transfer
/
crypto-destination-addresses
List Crypto Destination Addresses
curl --request GET \
  --url https://api.paxos.com/v2/transfer/crypto-destination-addresses \
  --header 'Authorization: Bearer <token>'
{
  "addresses": [
    {
      "id": "<string>",
      "address": "<string>",
      "identity_id": "<string>",
      "nickname": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "bookmarked": true,
      "travelrule_metadata": {
        "beneficiary": {
          "self": true,
          "person_details": {
            "first_name": "<string>",
            "last_name": "<string>",
            "physical_address": {
              "street_line_1": "<string>",
              "street_line_2": "<string>",
              "city": "<string>",
              "region": "<string>",
              "postal_code": "<string>",
              "country_code": "<string>"
            }
          },
          "institution_details": {
            "name": "<string>",
            "physical_address": {
              "street_line_1": "<string>",
              "street_line_2": "<string>",
              "city": "<string>",
              "region": "<string>",
              "postal_code": "<string>",
              "country_code": "<string>"
            }
          }
        },
        "vasp": {
          "id": "<string>",
          "name": "<string>"
        }
      }
    }
  ],
  "next_page_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://paxos-0ac97319-travel-rule-api-enhancements.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

OAuth Scope
transfer:read_crypto_destination_address

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

identity_id
string

Preview addition. The identity that owns the saved destination addresses. If unset, only addresses with no associated identity are returned.

ids
string[]

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

crypto_networks
enum<string>[]

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

A CryptoNetwork is a blockchain transmitting cryptocurrencies.

Available options:
BITCOIN,
ETHEREUM,
BITCOIN_CASH,
LITECOIN,
SOLANA,
POLYGON_POS,
BASE,
ARBITRUM_ONE,
STELLAR,
INK,
XLAYER
addresses
string[]

Optionally filter by specific addresses. Limit 100.

limit
integer<int32>
default:100

Number of results to return. Defaults to 100.

page_cursor
string

Cursor for the next page of results.

Response

A page of crypto destination addresses.

addresses
object[]
next_page_cursor
string