---
title: "List this org's conversation export jobs (newest first)"
method: GET
path: "/v1/conversations/exports"
tags: ["conversation-exports"]
---

# List this org's conversation export jobs (newest first)

`GET /v1/conversations/exports`

Durable, newest-first history of this org's export jobs.

Backs the internal-UI "Exports" panel across reloads: job rows are never
deleted (only stale ``pending``/``running`` jobs are force-failed by the
reaper), so this is a permanent list — no ``localStorage`` rehydration
needed. Mints per-file download tokens inline (``mint_tokens=True``) — the
same actionable view ``get_export`` returns — so the panel renders working
Download buttons without a per-row follow-up call. Expired/failed jobs come
back as history rows with no tokens. Keyset-paginated on
``ix_conversation_export_jobs_org_created`` (``organization_id, created_at``).

## Query parameters

- `status` 'pending' | 'running' | 'succeeded' | 'partial' | 'failed' | 'expired', nullable — Optional status filter.
- `limit` integer
- `cursor` string, nullable — Opaque cursor from a prior page.

## Response `200`

Successful Response

- CursorPageConversationExportJobResponse
  - `items` ConversationExportJobResponse[], required
    - `id` string, uuid, required
    - `status` string, required
    - `export_format` string, required
    - `window_start` string, date-time, nullable
    - `window_end` string, date-time, nullable
    - `created_at` string, date-time, required
    - `started_at` string, date-time, nullable
    - `finalized_at` string, date-time, nullable
    - `expires_at` string, date-time, nullable
    - `total_rows` integer, nullable
    - `error_code` string, nullable
    - `filters` object, nullable
    - `files` ConversationExportFile[]
      - `name` string, required
      - `sha256_plaintext` string, nullable
      - `download_token` string, nullable
  - `next_cursor` string, nullable
  - `has_more` boolean, required

## Other responses

- `422` — Validation Error

---

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