Skip to main content
GET
/
customers
/
{id}
/
wallets
List customer wallets
curl --request GET \
  --url https://api.polygon.technology/v0.9/customers/{id}/wallets \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "walletAddresses": [
      {
        "assetId": "<string>",
        "balance": "<string>",
        "chain": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "currencyName": "<string>",
        "currencySymbol": "<string>",
        "id": "<string>",
        "walletAddress": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Token from POST /auth/token

Path Parameters

id
string
required

Query Parameters

limit
integer<int32>
startingAfter
string

Free-text search. Matches wallet id or on-chain address.

q
string

Alias for search.

Response

200 - application/json

The request has succeeded.

data
object