List Statement Request
Viewer AccessLists statements for your legal entity, most recent first. Supports filtering by creation date and cursor-based pagination.
List statements
Lists the statements for your legal entity, most recent first. Use the date filters to narrow the results and the page_token cursor to page through them.
The response returns a page of statements along with a next_page_token:
The list response does not include download_url or file_name. Call Get Statement Request for a specific statement to obtain a fresh download link.
A next_page_token is returned only when the page is full, meaning it contains as many records as page_size. It is empty when there are no more pages, as in the example above. To fetch the next page, pass the token back as the page_token query parameter.
Authorization
AuthorizationRequiredBearer <token>Enter your token in the format: Bearer {token}
In: header
Query Parameters
created_fromstringOnly return exports created at or after this timestamp.
date-timecreated_tostringOnly return exports created at or before this timestamp.
date-timepage_tokenstringThe pagination cursor returned by a previous response as next_page_token.
page_sizeintegerMaximum number of records to return per page. Defaults to 50, capped at 100.
int64Response Body
Success response
dataRequiredarray<object>next_page_tokenRequiredstringtotal_countintegerTotal number of records returned in the response.
int64Get Statement Request GET
Retrieves a single statement by ID. Poll this endpoint until the status is completed, then use the download URL to fetch the generated CSV file.
Cancel Statement Request POST
Cancels a statement that is still processing. Statements that have already completed or been cancelled cannot be cancelled.