---
title: "Get a list of timeline analyses."
method: GET
path: "/timeline-analyses"
tags: ["Timeline"]
---

# Get a list of timeline analyses.

`GET /timeline-analyses`

Retrieves a paginated list of activeflow AI analyses for the authenticated customer.

## Query parameters

- `page_size` integer
- `page_token` string
- `activeflow_id` string, uuid
- `status` 'progressing' | 'completed' | 'failed' — Lifecycle state of the analysis.

## Response `200`

A list of timeline analyses.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` TimelineManagerAnalysis[]
    - `id` string, uuid — The unique identifier of the analysis. Returned from the `POST /timeline-analyses` or `GET /timeline-analyses` response.
    - `customer_id` string, uuid — The customer who owns this analysis.
    - `activeflow_id` string, uuid — The ended activeflow that was analyzed. Returned from the `GET /activeflows` response.
    - `status` 'progressing' | 'completed' | 'failed' — Lifecycle state of the analysis.
    - `result` object — The structured analysis verdict. Null while progressing or on failure. Present on successful completion. Includes an overall status, a narrative, detected issues with evidence pointers, and per-type resource usage.
    - `error` string — Sanitized failure reason when status is failed.
    - `tm_create` string, date-time — Timestamp when the analysis was created.
    - `tm_update` string, date-time, nullable — Timestamp when the analysis was last updated.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `500` — Internal error (INTERNAL).

---

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