---
title: "List Drafts"
method: GET
path: "/v0/drafts"
tags: ["Drafts"]
---

# List Drafts

`GET /v0/drafts`

**CLI:**
```bash
agentmail drafts list
```

## Query parameters

- `limit` integer — Limit of number of items returned.
- `page_token` string — Page token for pagination.
- `labels` string[] — Labels to filter by.
- `before` string, date-time — Timestamp before which to filter by.
- `after` string, date-time — Timestamp after which to filter by.
- `ascending` boolean — Sort in ascending temporal order.

## Response `200`

- ListDraftsResponse
  - `count` integer, required — Number of items returned.
  - `limit` integer — Limit of number of items returned.
  - `next_page_token` string — Page token for pagination.
  - `drafts` DraftItem[], required — Ordered by `updated_at` descending.
    - `inbox_id` string, required — The ID of the inbox.
    - `draft_id` string, required — ID of draft.
    - `labels` string[], required — Labels of draft.
    - `to` string[] — Addresses of recipients. In format `username@domain.com` or `Display Name <username@domain.com>`.
    - `cc` string[] — Addresses of CC recipients. In format `username@domain.com` or `Display Name <username@domain.com>`.
    - `bcc` string[] — Addresses of BCC recipients. In format `username@domain.com` or `Display Name <username@domain.com>`.
    - `subject` string — Subject of draft.
    - `preview` string — Text preview of draft.
    - `attachments` Attachment[] — Attachments in draft.
      - `attachment_id` string, required — ID of attachment.
      - `filename` string — Filename of attachment.
      - `size` integer, required — Size of attachment in bytes.
      - `content_type` string — Content type of attachment.
      - `content_disposition` 'inline' | 'attachment' — Content disposition of attachment.
      - `content_id` string — Content ID of attachment.
    - `in_reply_to` string — ID of message being replied to.
    - `forward_of` string — ID of message being forwarded.
    - `send_status` 'scheduled' | 'sending' | 'failed' — Schedule send status of draft.
    - `send_at` string, date-time — Time at which to schedule send draft.
    - `updated_at` string, date-time, required — Time at which draft was last updated.

## Other responses

- `404`

## Changes

- **2026-07-15** `394ddcdd9c29` — 4 info
  - added the optional property `code` to the response with the `404` status
  - added the optional property `docs` to the response with the `404` status
  - added the optional property `drafts/items/forward_of` to the response with the `200` status
  - added the optional property `fix` to the response with the `404` status
- **2026-03-31** `27965096e618` — 1 breaking, 1 info
  - removed the required property `drafts/items/thread_id` from the response with the `200` status
  - added the optional property `drafts/items/in_reply_to` to the response with the `200` status
- **2026-03-28** `8a5b5e92ae2d` — 1 warning, 1 info
  - removed the optional property `drafts/items/in_reply_to` from the response with the `200` status
  - added the required property `drafts/items/thread_id` to the response with the `200` status
- **2026-03-12** `70f0c69c80fa` — 1 info
  - added the optional property `drafts/items/in_reply_to` to the response with the `200` status
- **2026-03-10** `1a6bdf8f360f` — 1 breaking
  - removed the required property `drafts/items/thread_id` from the response with the `200` status

[Change history](https://skmtc.dev/agentmail-to/apis/api/changes/v0/drafts/get.md)

---

[API](https://skmtc.dev/agentmail-to/apis/api.md) · [All operations](https://skmtc.dev/agentmail-to/apis/api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/agentmail-to/api/revisions/394ddcdd9c29/schema)
