---
title: "List drafts"
description: "Rows are ids. Fetch one to read it."
url: "https://openemail.uk/docs/api/drafts/list"
area: "API"
category: "Mailbox"
---

# List drafts

Rows are ids. Fetch one to read it.

`GET /drafts`

## GET /drafts

Rows are ids. Fetch one to read it.

## Example

Needs `drafts:read`. `pageToken` is opaque and its shape depends on the sort, so pass back what you were given.

**curl**

```
curl "$OE/drafts?limit=25" -H "$AUTH"
```

**Response**

```
{
  "object": "list",
  "data": [{ "object": "draft", "id": "draft-fdc85673-…" }],
  "nextPageToken": null
}
```
