Wallet APICreate wallets for a customerProvision new wallets on specific blockchain networksCopy MarkdownOpenHTTP request POST /v1/customers/{customerId}/wallets Request body { "chains": ["base", "polygon"] } Example response { "wallets": [ { "chain": "base", "address": "0x1234" }, { "chain": "polygon", "address": "0x5678" } ] } Code examples cURLJavaScriptPythonJavaGocurl https://wallet.swipelux.com/v1/customers/cus_123/wallets \ --request POST \ --header 'Content-Type: application/json' \ --header 'X-API-Key: YOUR_SECRET_API_KEY' \ --data '{ "chains": ["base", "polygon"] }'List customer walletsRetrieve all wallets for a customer with optional multi-chain supportGet all transfers GETRetrieve all transfers