Skip to main content
POST
/
v1
/
retrievers
/
{retriever_id}
/
executions
/
list
List Executions
curl --request POST \
  --url https://api.mixpeek.com/v1/retrievers/{retriever_id}/executions/list \
  --header 'Content-Type: application/json' \
  --data '
{
  "filters": {},
  "sorts": [
    {}
  ],
  "status": "<string>"
}
'
{
  "pagination": {
    "total": 1,
    "limit": 1,
    "offset": 1,
    "has_next": true
  },
  "results": [
    {
      "execution_id": "<string>",
      "status": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "duration_ms": 1,
      "credits_used": 1,
      "total_processed": 1,
      "total_returned": 1,
      "completed_at": "2023-11-07T05:31:56Z",
      "cache_hit_rate": 0.5,
      "inputs_hash": "<string>",
      "query_summary": "<string>"
    }
  ]
}

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.

Examples:

"Bearer YOUR_API_KEY"

"Bearer YOUR_STRIPE_API_KEY"

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'

Examples:

"ns_abc123def456"

"production"

"my-namespace"

Path Parameters

retriever_id
string
required

Retriever ID or name.

Query Parameters

limit
integer | null
Required range: 1 <= x <= 1000
offset
integer | null
Required range: 0 <= x <= 10000
cursor
string | null

Body

application/json

Request to list retriever executions.

filters
Filters · object
sorts
Sorts · object[] | null
status
string | null

Optional status filter (completed, failed, running).

Response

Successful Response

Re-export shared execution listing response for OpenAPI docs.

pagination
PaginationMetadata · object
required

Pagination metadata

results
RetrieverExecutionSummary · object[]

Execution summaries