List Wallets
List all wallets for your API key.
GET /v1/wallets
Query Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
status | string | all | Filter by status: watching, deposit_detected, confirmed, swept, expired |
limit | number | 50 | Results per page (1-100) |
offset | number | 0 | Pagination 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
}
}