cURL
curl --request GET \ --url https://api.oneclickdz.com/v3/internet/list \ --header 'X-Access-Token: <api-key>'
Get paginated list of internet top-up transactions
curl "https://api.oneclickdz.com/v3/internet/list?page=1&pageSize=20" \ -H "X-Access-Token: YOUR_API_KEY"
{ "success": true, "data": { "topups": [ { "_id": "6901616fe9e88196b4eb64b2", "ref": "internet-order-001", "status": "FULFILLED", "type": "ADSL", "number": "036362608", "topup_amount": 1000, "card_code": "123456789012", "num_trans": "AT-2025-12345", "created_at": "2025-10-29T01:00:00.000Z" } ] }, "meta": { "pagination": { "currentPage": 1, "totalPages": 5, "totalItems": 87, "hasNextPage": true } } }