Skip to main content
POST
List Adhoc Executions

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer | null
Required range: 1 <= x <= 1000
page_size
integer | null
Required range: 1 <= x <= 1000
offset
integer | null
Required range: 0 <= x <= 10000
page
integer | null
Required range: x >= 1
cursor
string | null
include_total
boolean
default:false

Body

application/json

Request to list ad-hoc retriever executions with filtering.

Allows filtering by status, time range, and searching by query summary. Results are ordered by timestamp descending (most recent first).

status
string | null

Filter by execution status. Common values: 'completed', 'failed'. OPTIONAL - omit to see all statuses.

Example:

"completed"

start_time
any | null

Filter executions after this timestamp (inclusive). OPTIONAL - omit for no start time filter.

end_time
any | null

Filter executions before this timestamp (inclusive). OPTIONAL - omit for no end time filter.

Response

Successful Response

Response from listing ad-hoc retriever executions.

pagination
any
required

Pagination metadata.

results
AdhocExecutionSummary · object[]

List of ad-hoc execution summaries.

total
integer
default:0

Total number of ad-hoc executions matching filters.