# The Export object

> Attributes of a BloomText Export and the endpoints that return it.

Source: https://www.bloomtext.com/developers/api/reference/export-object/

Asynchronous conversation exports.

### Attributes

- `id` (UUID, required): Unique ID of the export.

- `status` (queued, running, ready, failed, required): Progress of the export.

- `created_at` (timestamp, required): When the export was requested.

- `download_url` (URL or null): Short-lived download URL

### Endpoints

| Method | Path | Endpoint |
| --- | --- | --- |
| POST | `/conversations/{conversationId}/exports` | [Export a conversation](https://www.bloomtext.com/developers/api/reference/create-chat-export/) |
| GET | `/exports/{exportId}` | [Retrieve an export](https://www.bloomtext.com/developers/api/reference/get-chat-export/) |

```json filename="The Export object"
{
  "id": "7a2e4c6b-9d1f-4b3a-8e5c-2f0d1b3a5c7e",
  "status": "ready",
  "created_at": "2026-09-21T15:04:05Z",
  "download_url": "https://files.bloomtext.com/exports/7a2e4c6b.zip?expires=1790003600&signature=…"
}
```
