---
title: "Search public emails"
method: GET
path: "/public/emails/{username}"
tags: ["public"]
---

# Search public emails

`GET /public/emails/{username}`

Search and list public emails for a newsletter. No authentication required.

## Path parameters

- `username` string, required

## Query parameters

- `q` string — If provided, only return emails matching the given query.
- `page` integer — The page number to return.

## Response `200`

OK

- PublicEmailPage
  - `results` PublicEmail[], required — The list of results for this page.
    - `id` string, required — A unique TypeID associated with the object.
    - `creation_date` string, date-time, required — The date and time at which the object was first created.
    - `subject` string, required
    - `slug` string, nullable
    - `publish_date` string, date-time, nullable
    - `description` string, required
    - `absolute_url` string, required
  - `next` string, nullable — The URL to the next page of results, if any.
  - `previous` string, nullable — The URL to the previous page of results, if any.
  - `count` integer, required — The total number of results across all pages.

## Other responses

- `404` — Not Found
- `429` — Too Many Requests

---

[API](https://skmtc.net/buttondown/apis/buttondown-api.md) · [All operations](https://skmtc.net/buttondown/apis/buttondown-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/buttondown/buttondown-api/versions/3a702c095d22/schema)
