Wallets
GET Customer Wallets
API reference for fetching customer wallets
GET
/
wallets
/
{customer_id}
/
customer
Copy
curl --request GET \
--url https://api-staging.stablestack.xyz/api/wallets/{customer_id}/customer \
--header 'x-api-key: <x-api-key>'
Copy
{
"status": "success",
"data": [
{
"id": "2ed51ca9-e1a4-42be-91c2-a611bd2d8eba",
"asset_type": "STABLECOIN",
"currency": "USDC",
"balance": "0.00000000",
"description": "my erc account",
"status": "active",
"created_at": "2025-04-30T12:22:37.246Z",
"updated_at": "2025-04-30T12:22:37.246Z",
"customer_id": "ddf723ee-5558-442d-b46f-4e3d42817448",
"addresses": {
"address": "0x67B42590C86F538d3a87253C6e64b32b7D35dhg5",
"network": "bep20",
"created_at": "2025-05-01T10:29:56.789Z"
}
},
{
"id": "f9351946-776a-4cf3-bac8-3ad7c40ad921",
"asset_type": "STABLECOIN",
"currency": "USDT",
"balance": "0.00000000",
"description": "my erc account",
"status": "active",
"created_at": "2025-04-30T12:11:45.581Z",
"updated_at": "2025-04-30T12:11:45.581Z",
"customer_id": "ddf723ee-5558-442d-b46f-4e3d42817448",
"addresses": {
"address": "0x67B42590C86F538d3a87253C6e64b32b7D35dhg5",
"network": "erc20",
"created_at": "2025-04-30T12:11:45.898Z"
}
}
],
"pagination": {
"total": 2,
"page": 1,
"limit": 10,
"totalPages": 1
}
}
Retrieves a list of all wallets associated with your customer
Headers
Path Parameters
Response
200 - application/json
OK
The response is of type object
.
Copy
curl --request GET \
--url https://api-staging.stablestack.xyz/api/wallets/{customer_id}/customer \
--header 'x-api-key: <x-api-key>'
Copy
{
"status": "success",
"data": [
{
"id": "2ed51ca9-e1a4-42be-91c2-a611bd2d8eba",
"asset_type": "STABLECOIN",
"currency": "USDC",
"balance": "0.00000000",
"description": "my erc account",
"status": "active",
"created_at": "2025-04-30T12:22:37.246Z",
"updated_at": "2025-04-30T12:22:37.246Z",
"customer_id": "ddf723ee-5558-442d-b46f-4e3d42817448",
"addresses": {
"address": "0x67B42590C86F538d3a87253C6e64b32b7D35dhg5",
"network": "bep20",
"created_at": "2025-05-01T10:29:56.789Z"
}
},
{
"id": "f9351946-776a-4cf3-bac8-3ad7c40ad921",
"asset_type": "STABLECOIN",
"currency": "USDT",
"balance": "0.00000000",
"description": "my erc account",
"status": "active",
"created_at": "2025-04-30T12:11:45.581Z",
"updated_at": "2025-04-30T12:11:45.581Z",
"customer_id": "ddf723ee-5558-442d-b46f-4e3d42817448",
"addresses": {
"address": "0x67B42590C86F538d3a87253C6e64b32b7D35dhg5",
"network": "erc20",
"created_at": "2025-04-30T12:11:45.898Z"
}
}
],
"pagination": {
"total": 2,
"page": 1,
"limit": 10,
"totalPages": 1
}
}
Assistant
Responses are generated using AI and may contain mistakes.