Skip to main content
GET
cURL

Pagination

This API supports pagination using the page_number and page_size query parameters. You can utilize has_more in the API response to determine if you should fetch the next page. You can learn more about it from the pagination documentation.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

batch_id
string<uuid>
required

The ID of the batch

Query Parameters

page_number
integer
default:1

The page number to retrieve (starts from 1)

Required range: x >= 1
page_size
integer
default:100

Number of results per page. Maximum allowed is 1000.

Required range: 1 <= x <= 1000

Response

Paginated list of executions from a batch sorted by most recent first

page_number
number<integer>

The current page number returned in the response. Matches the page_number requested in the query.

page_size
number<integer>

The number of records returned per page. Matches the page_size specified in the request.

total
number<integer>

Number of total executions

has_more
boolean

Whether there are more records or not

data
object[]