π³Ledger View
Use this endpoint to view a ledger for a given merchant account. Date filters must be provided as timestamps in epoch miliseconds.
get
This endpoint retrieves the transaction ledger for an authenticated user. The request requires an API token in the header and supports optional filters such as date range, pagination, and user/wallet selection.
Query parameters
startstringOptionalExample:
Start datetime for filtering transactions (datetime)
{"value":"2025-05-15T14:10:00"}endstringOptionalExample:
End datetime for filtering transactions (datetime)
{"value":"2025-05-15T15:10:00"}pageintegerOptionalExample:
Page number for pagination (default: 0)
{"value":1}limitinteger Β· min: 1 Β· max: 10OptionalExample:
Number of records per page (default: 10, min: 1, max: 10)
{"value":10}Header parameters
AuthorizationstringRequiredExample:
API token for authentication
{"value":"Token your-token-here"}Responses
200
Ledger transactions retrieved successfully
application/json
400
Invalid request parameters
application/json
404
No ledger data found
application/json
500
Internal server error
application/json
get
/api/v1/merchant/ledgerLast updated