Skip to main content
GET
/
v1
/
portfolios
/
{portfolio_id}
/
wallets
/
{wallet_id}
/
addresses
List Wallet Addresses
curl --request GET \
  --url https://api.prime.coinbase.com/v1/portfolios/{portfolio_id}/wallets/{wallet_id}/addresses
{
  "addresses": [
    {
      "address": "<string>",
      "account_identifier": "<string>",
      "network": {
        "id": "<string>",
        "type": "<string>"
      }
    }
  ],
  "pagination": {
    "next_cursor": "<string>",
    "sort_direction": "DESC",
    "has_next": true
  }
}

Path Parameters

portfolio_id
string
required

The portfolio ID associated with the wallet

wallet_id
string
required

The wallet ID for which to retrieve all deposit addresses

Query Parameters

network_id
string
required

The blockchain network name and type, provide an empty network to retrieve addresses across all networks for this wallet

cursor
string

Cursor to retrieve the next page of results

limit
integer

Maximum number of addresses to return in a single response

Response

200 - application/json

A successful response.

addresses
Addresses · object[]
required
pagination
object
required
I