GET
/
v1
/
wallets
List wallets
curl --request GET \
  --url https://api.cdp.coinbase.com/platform/v1/wallets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "d43059c7-2cc8-471e-b39b-d6dfb279cc42",
      "network_id": "base-sepolia",
      "default_address": {
        "wallet_id": "d91d652b-d020-48d4-bf19-5c5eb5e280c7",
        "network_id": "base-sepolia",
        "public_key": "<string>",
        "address_id": "0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a"
      },
      "feature_set": {
        "faucet": true,
        "server_signer": true,
        "transfer": true,
        "trade": true,
        "stake": true,
        "gasless_send": true
      },
      "server_signer_status": "pending_seed_creation"
    }
  ],
  "has_more": true,
  "next_page": "<string>",
  "total_count": 50
}

Authorizations

Authorization
string
header
required

Enter your JSON Web Token (JWT) here. Refer to the Generate JWT section of our Authentication docs for information on how to generate your Bearer Token.

Query Parameters

limit
integer

A limit on the number of objects to be returned. Limit can range from 1 to 100, and the default is 10.

page
string

A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

Maximum length: 5000

Response

The list of wallets

Paginated list of wallets

data
object[]
required
has_more
boolean
required

True if this list has another page of items after this one that can be fetched.

next_page
string
required

The page token to be used to fetch the next page.

total_count
integer
required

The total number of wallets

Example:

50