Skip to main content
GET
/
v1
/
wallets
/
{wallet_id}
/
addresses
List wallet addresses
curl --request GET \
  --url https://api.cdp.coinbase.com/platform/v1/wallets/{wallet_id}/addresses \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "wallet_id": "d91d652b-d020-48d4-bf19-5c5eb5e280c7",
      "network_id": "base-sepolia",
      "public_key": "<string>",
      "address_id": "0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a"
    }
  ],
  "has_more": true,
  "next_page": "<string>",
  "total_count": 50
}

Authorizations

Authorization
string
header
required

Path Parameters

wallet_id
string
required

Query Parameters

limit
integer
page
string
Maximum length: 5000

Response

data
object[]
required
has_more
boolean
required
next_page
string
required
total_count
integer
required
Example: