List revenue statements
Lists the calling organization's revenue statements, newest check date first. Line items are on the detail endpoint.
Query Parameters
- Type: integerlimitmin:1max:100
Page size, 1–100. Defaults to 25.
- Type: stringcursormax length:300
Opaque token from the previous response's
pagination.nextCursor. - Type: string Format: date-timeupdated
Since ISO 8601 timestamp. Returns only records modified at or after this time.
- Type: string Format: date-timecheck
Date From the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
- Type: string Format: date-timecheck
Date To the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z
- Type: string · enumstatusvalues
- D
R A F T - R
E V I E W - A
P P R O V E D - R
E J E C T E D - E
R R O R
- Type: stringpurchaser
Name max length:200Case-insensitive substring match.
- Type: stringstatement
Number max length:100Case-insensitive substring match.
Responses
- application/json
- application/json
- application/json
- application/json
Request Example for get/revenue-statements
curl https://app.joltly.io/api/v1/revenue-statements \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"id": "string",
"createdAt": "2026-07-31T16:53:46.516Z",
"updatedAt": "2026-07-31T16:53:46.516Z",
"statementNumber": null,
"purchaserName": null,
"status": "DRAFT",
"checkDate": null,
"grossRevenue": null,
"checkTaxes": null,
"checkDeductions": null,
"amountWithheld": null,
"netPayment": null
}
],
"pagination": {
"nextCursor": null
}
}