Skip to main content
GET
cURL

Authorizations

Authorization
string
header
required

Use the Bearer scheme with a valid JWT token to authenticate requests. Example: Authorization: Bearer <token>

Query Parameters

folder
string

The folder in which to search for entries.

Example:

"invoices"

created_at
string

Starting date and time for retrieving results, formatted as an ISO timestamp. Treated as the upper bound when descending (the default) or the lower bound when ascending.

Example:

"2023-08-02T00:00:00.000Z"

cursor
string

The position marker from the previous result's next_cursor property, used for pagination. Must be used with the same ascending value as the call that produced it.

limit
integer

The maximum number of entries to return in a single page of results.

Example:

20

ascending
boolean

When true, results are returned in ascending order (oldest first) instead of the default descending order (newest first).

Response

200 - application/json

OK

created_at
string

Starting date for results. Acts as the upper bound when descending (the default) or the lower bound when ascending.

Example:

"2025-05-01T00:00:00.000Z"

cursor
string

Cursor used to identify the current page of results.

folder
string

Key for the folder

Example:

"sales"

limit
integer

Maximum number of entries to show in a page of results, up to 100.

Example:

20

list
List · object[] | null

Array of entries sorted by creation time, descending by default or ascending when requested.

next_cursor
string

Cursor used to identify the next page of results.