---
title: "Retrieve a reconciliation story"
method: GET
path: "/reconciliation_stories/{id}"
---

# Retrieve a reconciliation story

`GET /reconciliation_stories/{id}`

## Path parameters

- `id` string, required

## Response `200`

Story retrieved

- ReconciliationStory — A reconciliation story groups related reconciliations into an ordered chain so end-to-end flow can be tracked. Each link points to a reconciliation; non-origin links must specify the data stream that connects them to the previous reconciliation in the chain.
  - `id` integer
  - `name` string, required — Human readable name for the story
  - `created_at` string, date-time
  - `links` ReconciliationStoryLink[] — Ordered list of reconciliations participating in the story
    - `id` integer
    - `position` integer, required — 1-indexed position in the chain. Must be unique within a story.
    - `role` 'origin' | 'continuation', required — The first link is the 'origin'. All subsequent links are 'continuation' and must set shared_data_stream_id.
    - `reconciliation_id` integer, required — The reconciliation this link points to
    - `reconciliation_name` string
    - `shared_data_stream_id` integer, nullable — The data stream that connects this link to the previous link in the chain. Required for continuation links, null for origin.
    - `shared_data_stream_name` string, nullable
    - `side_a_streams` object[]
      - `id` integer
      - `name` string
    - `side_b_streams` object[]
      - `id` integer
      - `name` string

## Other responses

- `404` — Story not found

---

[API](https://skmtc.net/endclose/apis/end-close-api.md) · [All operations](https://skmtc.net/endclose/apis/end-close-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/endclose/end-close-api/revisions/613ceff68dc7/schema)
