> ## 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 for a received inbound email.

Retrieves an array of all attachment records extracted from a parsed incoming email.

### Path Parameters

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

### Response

<ResponseField name="data" type="object[]">
  Array of attachment items.

  <Expandable title="Attachment Object">
    <ResponseField name="id" type="string">Attachment ID</ResponseField>
    <ResponseField name="filename" type="string">File name</ResponseField>
    <ResponseField name="content_type" type="string">MIME type</ResponseField>
    <ResponseField name="size" type="integer">Size in bytes</ResponseField>
    <ResponseField name="download_url" type="string">Presigned download URL</ResponseField>
  </Expandable>
</ResponseField>


## Related topics

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