---
title: "List invocations"
method: GET
path: "/invocations"
tags: ["Invocations"]
---

# List invocations

`GET /invocations`

List invocations. Optionally filter by application name, action name, status, deployment ID, or start time.

## Query parameters

- `app_name` string
- `version` string
- `action_name` string
- `deployment_id` string
- `status` 'queued' | 'running' | 'succeeded' | 'failed'
- `since` string
- `limit` integer
- `offset` integer
- `query` string

## Response `200`

A list of invocations.

- Invocation[]
  - `id` string, required — ID of the invocation
  - `app_name` string, required — Name of the application
  - `version` string, required — Version label for the application
  - `action_name` string, required — Name of the action invoked
  - `payload` string — Payload provided to the invocation. This is a string that can be parsed as JSON.
  - `output` string — Output produced by the action, rendered as a JSON string. This could be: string, number, boolean, array, object, or null.
  - `started_at` string, date-time, required — RFC 3339 Nanoseconds timestamp when the invocation started
  - `finished_at` string, date-time, nullable — RFC 3339 Nanoseconds timestamp when the invocation finished (null if still running)
  - `status` 'queued' | 'running' | 'succeeded' | 'failed', required — Status of the invocation
  - `status_reason` string — Status reason

## Other responses

- `400` — Bad Request – invalid input
- `401` — Unauthorized – missing or invalid authorization token
- `500` — Internal Server Error

---

[API](https://skmtc.net/kernel/apis/kernel-api.md) · [All operations](https://skmtc.net/kernel/apis/kernel-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kernel/kernel-api/revisions/9e8ce9fcf5e1/schema)
