List calculation results
Returns a paginated list of stored calculations matching any supplied created_from and created_to filters, up to the requested limit. Items are returned in descending order of creation, with the latest results first.
Each item includes the calculation ID originally provided in the request and the date-time when the calculation was created. Use the cursor query parameter to request the next page of calculations by passing the nextCursor value from the previous response.
Authorizations
API key for authenticating requests. Include this header in all calls.
Query Parameters
Filters results to calculations created at or after this ISO 8601 date-time.
Filters results to calculations created before this ISO 8601 date-time.
Maximum number of results to return.
1 <= x <= 100Cursor returned by a previous request, used to retrieve the next page of results.
Response
Returns stored calculations matching the supplied filters, up to the requested limit. Each item includes the user provided calculation ID and the date-time when the calculation was created.
The hasMore property is included with a value of true when there are further pages of stored calculations to retrieve. When hasMore is true, the nextCursor property is also provided. Pass its value as the cursor query parameter in a subsequent request to retrieve the next page of stored calculation IDs.
A list of up to limit stored calculation result identifiers and creation times
falling within the created_from and created_to date filters. Results are ordered by
created_at in descending order.
100Whether or not more items are available after this page.
Cursor for retrieving the next page of results. When provided, pass this value as the cursor query parameter in a subsequent list request to fetch earlier-created calculation result IDs. Omitted when there are no more results.