Skip to main content

List Wallets

List all wallets for your API key.

GET /v1/wallets

Query Parameters:

ParameterTypeDefaultDescription
statusstringallFilter by status: watching, deposit_detected, confirmed, swept, expired
limitnumber50Results per page (1-100)
offsetnumber0Pagination offset

Example Request:

GET /v1/wallets?status=confirmed&limit=10&offset=0

Example Response:

{
"success": true,
"wallets": [
{
"id": "wal_abc123",
"address": "TYVVgZBSUrvntue4WSGWNi15b3er3wiYnh",
"network": "trc20",
"crypto": "USDT",
"status": "confirmed",
"amount": "100.50",
"confirmations": 19,
"createdAt": "2024-03-03T08:38:12.000Z"
}
],
"pagination": {
"limit": 10,
"offset": 0,
"returned": 1
}
}