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

# Retrieve Recommended Action

`GET /recommended_actions/{id}`

Retrieves a recommended action chain by id, including chains that have already been run. Seeded chains are reconstructed from their preset; generated chains are read from the account's stored chain, with each step's filled-in input.

## Response `200`

generated chain retrieved

- AccountRecommendedActionChain
  - `actions` AccountRecommendedActionChainStep[], required
    - `action` string, required — The action definition key this step runs; new values may be added, so handle unknown actions gracefully
    - `cta` string, required — The URL where this step is done by hand
    - `cta_label` string, required — Button label
    - `description` string, required — Supporting copy, or empty
    - `input` object, nullable, required — The filled-in request body for the step's endpoint, or `null` for seeded chains
    - `position` integer, required — Zero-based order of this step within the chain
    - `reasoning` object, nullable, required — Why the generator filled the step this way, or `null` for seeded chains
    - `title` string, required — Headline for the step
  - `description` string, required — What running the chain accomplishes
  - `id` string, required — Chain ID — `rac_seed_<preset>_<nonce>` for seeded chains, `rac_chain_*` for generated ones
  - `reasoning` object, nullable, required — Why the generator proposed this chain, or `null` for seeded chains
  - `title` string, required — Headline for the chain

## 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/c301132dbfd7/schema)
