# GET /emails/receiving/{email_id}/attachments (Resend API)
Base URL: https://api.resend.com
Auth: Authorization: Bearer <RESEND_API_KEY>
Last verified: 2026-09-03

> Retrieve a list of attachments for a received email

## Critical Gotchas
* All requests must include a `User-Agent` header (e.g. `User-Agent: my-app/1.0`) or the API returns HTTP 403.
* The `to` field is an array of strings, even when sending to a single recipient.

## cURL
curl -X GET 'https://api.resend.com/emails/receiving/email-id/attachments?limit=10&after=example-after&before=example-before' \
  -H "Authorization: Bearer $RESEND_API_KEY" \
  -H 'User-Agent: my-app/1.0'

## Parameters
| Name | In | Type | Required | Description |
| :--- | :--- | :--- | :--- | :--- |
| email_id | path | string | Yes | The ID of the received email. |
| limit | query | integer | No | Maximum number of attachments to return. |
| after | query | string | No | Pagination cursor to fetch results af... |

## Response (200 OK)
{"object":"list","has_more":false}

---
Need an API key? Get one at https://resend.com/signup