---
title: "List sent emails"
method: GET
path: "/emails"
tags: ["Emails"]
---

# List sent emails

`GET /emails`

## Query parameters

- `page` integer
- `limit` integer
- `status` 'queued' | 'sending' | 'sent' | 'delivered' | 'bounced' | 'complained' | 'failed' | 'cancelled'
- `from` string
- `to` string
- `tag` string

## Response `200`

Paginated list

- PaginatedEmailList
  - `data` Email[]
    - `id` string, required
    - `from` string
    - `to` string[]
    - `subject` string
    - `status` 'queued' | 'sending' | 'sent' | 'delivered' | 'bounced' | 'complained' | 'failed' | 'cancelled', required
    - `tags` string[]
    - `created_at` string, date-time, required
    - `scheduled_at` string, date-time, nullable
    - `delivered_at` string, date-time, nullable
  - `pagination` Pagination
    - `page` integer
    - `limit` integer
    - `total` integer
    - `totalPages` integer

## Other responses

- `401` — Missing or invalid API key

---

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