---
title: "List All Executions"
method: GET
path: "/v1/alerts/executions"
tags: ["Alerts"]
---

# List All Executions

`GET /v1/alerts/executions`

List execution history for all alerts in the namespace.

## Query parameters

- `limit` integer, nullable
- `page_size` integer, nullable
- `offset` integer, nullable
- `page` integer, nullable
- `cursor` string, nullable
- `next_cursor` string, nullable
- `after` string, nullable
- `include_total` boolean

## Response `200`

Successful Response

- AlertExecutionListResponse — Response model for listing alert executions.
  - `results` AlertExecutionResult[], required — List of execution results
    - `alert_id` string, required — ID of the alert that was executed
    - `collection_id` string, required — Collection the alert was executed against
    - `execution_id` string — Unique identifier for this execution
    - `triggered` boolean, required — Whether the alert was triggered
    - `match_count` integer, required — Number of matches found
    - `matches` AlertMatchResult[], nullable — List of match results
      - `document_id` string, required — ID of the matched document
      - `asset_id` string, nullable — Asset ID of the matched document
      - `score` number, required — Similarity/relevance score
      - `matched_features` object, nullable — Features that caused the match
      - `metadata` object, nullable — Metadata from the matched document
    - `source_documents` string[] — Document IDs that triggered the alert check
    - `executed_at` string, required — ISO 8601 timestamp when the alert was executed
    - `duration_ms` integer, required — How long the execution took in milliseconds
  - `pagination` PaginationResponse, required — PaginationResponse. Cursor-based pagination response: - Use next_cursor for navigation - Total count fields only populated when include_total=true
    - `total` integer, nullable
    - `page` integer, nullable
    - `page_size` integer, nullable
    - `total_pages` integer, nullable
    - `next_page` string, nullable
    - `previous_page` string, nullable
    - `next_cursor` string, nullable
  - `total_count` integer, required — Total number of executions

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

[API](https://skmtc.net/mixpeek/apis/mixpeek-api.md) · [All operations](https://skmtc.net/mixpeek/apis/mixpeek-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mixpeek/mixpeek-api/versions/04b379bdbb7c/schema)
