> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mailofly.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve Attachment

> Retrieve a specific attachment from a sent email.

Fetches metadata and a temporary download URL for a file attached to a sent email.

### Path Parameters

<ParamField path="email_id" type="string" required>
  The unique ID of the sent email.
</ParamField>

<ParamField path="attachment_id" type="string" required>
  The unique ID of the attachment (`att_...`).
</ParamField>

### Response

<ResponseField name="id" type="string">
  Attachment identifier (`att_...`).
</ResponseField>

<ResponseField name="filename" type="string">
  Original file name (e.g. `invoice.pdf`).
</ResponseField>

<ResponseField name="content_type" type="string">
  MIME type (e.g. `application/pdf`).
</ResponseField>

<ResponseField name="size" type="integer">
  Size of the attachment in bytes.
</ResponseField>

<ResponseField name="download_url" type="string">
  Presigned URL to download the attachment payload.
</ResponseField>


## Related topics

- [Retrieve Attachment](/api/receiving/retrieve-attachment.md)
- [List Attachments](/api/receiving/list-attachments.md)
- [Retrieve Received Email](/api/receiving/retrieve-received-email.md)
- [Attachments](/sending/attachments.md)
