GET
/
v1
/
portfolios
/
{portfolio_id}
/
wallets
/
{wallet_id}
/
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

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.

The response is of type object.