List revenue statements

Lists the calling organization's revenue statements, newest check date first. Line items are on the detail endpoint.

Query Parameters
  • limit
    Type: integer
    min:  
    1
    max:  
    100

    Page size, 1–100. Defaults to 25.

  • cursor
    Type: string
    max length:  
    300

    Opaque token from the previous response's pagination.nextCursor.

  • updatedSince
    Type: string Format: date-time

    ISO 8601 timestamp. Returns only records modified at or after this time.

  • checkDateFrom
    Type: string Format: date-time

    the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z

  • checkDateTo
    Type: string Format: date-time

    the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z

  • status
    Type: string · enum
    values
    • DRAFT
    • REVIEW
    • APPROVED
    • REJECTED
    • ERROR
  • purchaserName
    Type: string
    max length:  
    200

    Case-insensitive substring match.

  • statementNumber
    Type: string
    max length:  
    100

    Case-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
  }
}