Skip to main content
POST
/
v1
/
retrievers
/
executions
/
list
List Anonymous Executions
curl --request POST \
  --url https://api.mixpeek.com/v1/retrievers/executions/list \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "completed",
  "start_time": "<unknown>",
  "end_time": "<unknown>"
}
'
{
  "pagination": "<unknown>",
  "executions": [
    {
      "execution_id": "<string>",
      "execution_mode": "<string>",
      "status": "<string>",
      "timestamp": "<unknown>",
      "duration_ms": 1,
      "credits_used": 1,
      "total_processed": 1,
      "total_returned": 1,
      "stages_completed": 1,
      "total_stages": 1,
      "cache_hit_rate": 0.5,
      "query_summary": "<string>",
      "collection_ids": [
        "<string>"
      ]
    }
  ],
  "total": 0
}

Headers

Authorization
string

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

X-Namespace
string

REQUIRED: Namespace identifier for scoping this request. All resources (collections, buckets, taxonomies, etc.) are scoped to a namespace. You can provide either the namespace name or namespace ID. Format: ns_xxxxxxxxxxxxx (ID) or a custom name like 'my-namespace'

Query Parameters

limit
integer | null
offset
integer | null

Body

application/json

Request to list anonymous 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 anonymous retriever executions.

pagination
any
required

Pagination metadata.

executions
AnonymousExecutionSummary · object[]

List of anonymous execution summaries.

total
integer
default:0

Total number of anonymous executions matching filters.