curl --location --request GET 'https://api.inboxkit.com/v1/api/billing/wallet/logs?page=1&limit=25&type=debit&kind=purchase&status=completed&related_model=domain&uid=&workspace=&start_date=2026-01-01T00:00:00.000Z&end_date=2026-12-31T23:59:59.000Z' \
--header 'Authorization: Bearer <token>'{
"error": false,
"page": 1,
"pageSize": 25,
"totalPages": 4,
"totalDocs": 87,
"totals": {
"total_debit": 150,
"total_credit": 500,
"count": 87
},
"logs": [
{
"uid": "wl_abc123",
"type": "credit",
"kind": "renewal",
"amount": 30,
"currency": "USD",
"balance_before": 200,
"balance_after": 170,
"description": "Azure domain: example.com",
"status": "pending",
"references": [
{
"model": "domain",
"uids": [
"d_abc123"
]
}
],
"created_at": "2026-04-16T10:00:00.000Z"
}
]
}