---
title: "List Attachments"
method: GET
path: "/attachments"
tags: ["Attachments"]
---

# List Attachments

`GET /attachments`

List all attachments

## Query parameters

- `ids` string[] — If provided, only return attachments matching the given IDs.
- `page_size` integer — The number of results per page.
- `page` integer — The page number of the paginated response.

## Response `200`

OK

- AttachmentPage
  - `results` Attachment[], 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.
    - `name` string, required — The name of the attachment.
    - `file` string, required — The URL of the attachment file.
    - `size` integer, required — The size of the attachment in bytes.
  - `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

- `401` — Unauthorized
- `403` — Forbidden
- `422` — Unprocessable Entity
- `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)
