---
title: "List Deposit Addresses"
method: GET
path: "/transfer/deposit-addresses"
tags: ["Deposit Addresses"]
---

# List Deposit Addresses

`GET /transfer/deposit-addresses`

List all deposit addresses, optionally filtering and paging the results.

## Query parameters

- `profile_ids` string[]
- `identity_ids` string[]
- `ids` string[]
- `ref_ids` string[]
- `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
- `account_ids` string[]
- `networks` string[]

## Response `200`

A successful response.

- ListDepositAddressesResponse
  - `items` DepositAddress[]
    - `id` string, required — The UUID of the deposit address.
    - `profile_id` string, required — The ID of the profile that will be credited when a deposit arrives with this address.
    - `customer_id` string, required — The Paxos Customer to which the profile belongs.
    - `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.
    - `identity_id` string — The Identity of the end user who will make deposits to this address.
    - `ref_id` string — Client-specified ID for replay protection and lookup.
    - `metadata` object — Optional client-specified metadata, which is set on deposit address creation. Up to 6 key/value pairs may be returned. Each key and value must be less than or equal to 100 characters.
    - `address` string, required — The crypto address to send to for deposits.
    - `account_id` string — The Account associated to the identity of the user that will be linked to the created address.
    - `conversion_target_asset` 'NO_CONVERSION' | 'USD', required — Asset to credit for deposits of Paxos-minted USD stablecoin.
    - `compatible_crypto_networks` CryptoNetwork[] — List of networks compatible with the created address. Any of these networks can be used to deposit to the address.
    - `created_at` string, date-time, required — The time at which this address was created.
  - `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)
