Swipelux
Wallet API

List customer wallets

Retrieve all wallets for a customer with optional multi-chain support

HTTP request

GET /v1/customers/{customerId}/wallets

Example response

{
  "wallets": [
    { "chain": "base", "address": "0x1234" },
    { "chain": "polygon", "address": "0x5678" }
  ]
}

Code examples

curl https://wallet.swipelux.com/v1/customers/cus_123/wallets \
  --header 'X-API-Key: YOUR_SECRET_API_KEY'

On this page