---
title: "List Crypto Destination Addresses"
method: GET
path: "/transfer/crypto-destination-addresses"
tags: ["Crypto Withdrawals"]
---

# List Crypto Destination Addresses

`GET /transfer/crypto-destination-addresses`

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

## Query parameters

- `ids` string[]
- `identity_ids` string[]
- `crypto_networks` string[]
- `addresses` string[]
- `nicknames` string[]
- `bookmarked_status` boolean
- `created_at.lt` string, date-time
- `created_at.lte` string, date-time
- `created_at.eq` string, date-time
- `created_at.gte` string, date-time
- `created_at.gt` string, date-time
- `limit` integer
- `order` 'DESC' | 'ASC'
- `order_by` 'CREATED_AT'
- `page_cursor` string

## Response `200`

A successful response.

- ListCryptoDestinationAddressesResponse
  - `addresses` CryptoDestinationAddress[]
    - `id` string, required
    - `identity_id` string — The Identity that owns this destination address. Unset for first-party (non-3P) addresses.
    - `crypto_network` 'BITCOIN' | 'ETHEREUM' | 'BITCOIN_CASH' | 'LITECOIN' | 'SOLANA' | 'POLYGON_POS' | 'BASE' | 'ARBITRUM_ONE' | 'STELLAR' | 'INK' | 'XLAYER' | 'AVALANCHE' | 'DOGECOIN' | 'SUI' | 'ROBINHOOD' | 'BNB', required — A CryptoNetwork is a blockchain transmitting cryptocurrencies.
    - `address` string, required
    - `nickname` string
    - `status` 'PENDING' | 'APPROVED' | 'REJECTED'
    - `created_at` string, date-time
    - `bookmarked` boolean
    - `policy_execution_id` string
    - `travelrule_metadata` CryptoDestinationAddressTravelruleMetadata — Travel Rule metadata for the destination address. See the [Travel Rule guide](/guides/travel-rule).
      - `beneficiary` Beneficiary — Beneficiary of the transfer: the party receiving the funds, identified by `person_details` or `institution_details`, or by `self = true` when the destination is the end user's own wallet.
        - `person_details` BeneficiaryPerson — Person details if beneficiary is a person.
          - `first_name` string, required
          - `last_name` string, required
          - `physical_address` GeographicAddress — A geographic (postal) address.
            - `country` string, required — ISO 3166-1 alpha-3 country code (e.g. "USA", "SGP").
            - `address1` string — First line of the street address (e.g. "123 Main St").
            - `address2` string — Optional second line of the street address (e.g. unit, suite, or floor).
            - `city` string — City or town.
            - `province` string — State, province, or region.
            - `zip_code` string — Postal or ZIP code.
        - `institution_details` BeneficiaryInstitution — Institution details if beneficiary is an institution.
          - `name` string, required
          - `physical_address` GeographicAddress — A geographic (postal) address.
            - `country` string, required — ISO 3166-1 alpha-3 country code (e.g. "USA", "SGP").
            - `address1` string — First line of the street address (e.g. "123 Main St").
            - `address2` string — Optional second line of the street address (e.g. unit, suite, or floor).
            - `city` string — City or town.
            - `province` string — State, province, or region.
            - `zip_code` string — Postal or ZIP code.
        - `self` boolean — `true` when the beneficiary is the end user themselves (their own wallet) in which case `person_details` and `institution_details` are omitted and resolved from the end user's Identity.
      - `vasp` CryptoDestinationAddressVasp — The receiving VASP for this destination address, when `custodian_type` is `VASP`.
        - `id` string
        - `name` string
        - `custom_vasp_name` string — Customer-supplied VASP name, used when the "Other" VASP is selected.
        - `custom_vasp_website` string — Customer-supplied VASP website, used when the "Other" VASP is selected.
      - `custodian_type` 'VASP' | 'PRIVATE'
      - `transfer_purpose` string — Purpose of the transfer.
  - `next_page_cursor` string

---

[API](https://skmtc.net/paxos/apis/paxos-api.md) · [All operations](https://skmtc.net/paxos/apis/paxos-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paxos/paxos-api/revisions/0687ca8c9a8d/schema)
