Skip to main content

Get All Bills

Overview

Description: This endpoint retrieves a list of bill transactions with details and pagination support

Endpoint: {base_url}/allbills

REQUEST PARAMETER

Request Parameters

#ParameterTypeDescriptionRequired?
1endDateStringThe end date for the query, in ISO 8601 format. Yes
2pageIntegerThe page number for paginationYes
3sizeIntegerThe number of records per pageYes
4startDateStringThe start date for the query, in ISO 8601 formatYes

Request Parameters

POST {base_url}/allbills
curl `${base_url}/allbills`
-H "Content-type: application/json"
-X POST
-d '{
"endDate": "2025-02-11T10:39:10.598Z",
"page": 0,
"size": 0,
"startDate": "2025-02-11T10:39:10.598Z"
}
'