Wallets
GET Wallet
API reference for fetching wallet by wallet ID
GET
/
wallets
/
{wallet_id}
Copy
curl --request GET \
--url https://api-staging.stablestack.xyz/api/wallets/{wallet_id}
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": [
{
"id": "fae5a5f4-cdd3-4dd1-9b62-e4a70faf8916",
"address": "0x67B42590C86F538d3a87253C6e64b32b7D35dhg5",
"network": "erc20",
"created_at": "2025-04-30T12:22:37.307Z"
},
{
"id": "92e6ac2f-6d52-4f7c-b05e-766ffe97191f",
"address": "TXvzrLA94eB1Bcp6ssadJukgnMA2Waw98R",
"network": "trc20",
"created_at": "2025-05-01T10:27:16.525Z"
},
{
"id": "55f33b26-6147-4f4f-8a44-91be6826ac83",
"address": "0x67B42590C86F538d3a87253C6e64b32b7D35dhg5",
"network": "bep20",
"created_at": "2025-05-01T10:29:56.789Z"
}
]
}
}
Retrieves detailed information about a specific wallet
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/{wallet_id}
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": [
{
"id": "fae5a5f4-cdd3-4dd1-9b62-e4a70faf8916",
"address": "0x67B42590C86F538d3a87253C6e64b32b7D35dhg5",
"network": "erc20",
"created_at": "2025-04-30T12:22:37.307Z"
},
{
"id": "92e6ac2f-6d52-4f7c-b05e-766ffe97191f",
"address": "TXvzrLA94eB1Bcp6ssadJukgnMA2Waw98R",
"network": "trc20",
"created_at": "2025-05-01T10:27:16.525Z"
},
{
"id": "55f33b26-6147-4f4f-8a44-91be6826ac83",
"address": "0x67B42590C86F538d3a87253C6e64b32b7D35dhg5",
"network": "bep20",
"created_at": "2025-05-01T10:29:56.789Z"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.