---
title: "List Recommended Action Executions"
method: GET
path: "/recommended_actions/{id}/executions"
tags: ["Recommended Actions"]
---

# List Recommended Action Executions

`GET /recommended_actions/{id}/executions`

Lists the per-step record of a recommended action chain the server ran — one entry per step in position order, each carrying its current status and, once the step completed, the API response it produced. A chain that was never run server-side returns an empty list.

## Path parameters

- `id` string, required

## Query parameters

- `account_id` string

## Response `200`

executions listed

- object
  - `chain_id` string, required — The chain these executions belong to.
  - `executions` RecommendedActionExecution[], required — One entry per run step, in position order.
    - `action` string, required — The action definition key the step ran
    - `completed_at` string, nullable, required — When the step reached a terminal status, ISO 8601
    - `error` string, nullable, required — Why the step failed, or `null`
    - `id` string, required — Execution ID, prefixed `raex_`
    - `output` object, nullable, required — The API response the step produced, or `null` until it succeeds
    - `position` integer, required — Zero-based order of the step within the chain
    - `status` 'pending' | 'redirected' | 'running' | 'succeeded' | 'failed', required — Where the step currently stands

## Other responses

- `401` — Unauthorized
- `404` — Resource not found

---

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