> ## 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.

# List Attachments

> List all attachments associated with a sent email.

Retrieves an array of all files attached to the specified sent email.

### Path Parameters

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

### Response

<ResponseField name="data" type="object[]">
  List of attachment objects.

  <Expandable title="Attachment Object">
    <ResponseField name="id" type="string">Unique attachment ID (`att_...`).</ResponseField>
    <ResponseField name="filename" type="string">File name.</ResponseField>
    <ResponseField name="content_type" type="string">MIME type.</ResponseField>
    <ResponseField name="size" type="integer">File size in bytes.</ResponseField>
    <ResponseField name="download_url" type="string">Download URL.</ResponseField>
  </Expandable>
</ResponseField>


## Related topics

- [List Attachments](/api/receiving/list-attachments.md)
- [Attachments](/sending/attachments.md)
- [Retrieve Attachment](/api/emails/retrieve-attachment.md)
