> ## 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 Contact Imports

> List recent contact import jobs and their statuses.

Retrieve a list of past and in-progress contact import tasks.

### Response

<ResponseField name="data" type="array">
  <ResponseField name="id" type="string">Import ID.</ResponseField>
  <ResponseField name="status" type="string">Import job status.</ResponseField>
  <ResponseField name="total" type="number">Total records in batch.</ResponseField>
  <ResponseField name="imported" type="number">Imported count.</ResponseField>
  <ResponseField name="failed" type="number">Failed count.</ResponseField>
  <ResponseField name="createdAt" type="string">ISO 8601 timestamp.</ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.mailofly.com/api/v1/contact-imports \
    -H "Authorization: Bearer mf_live_your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": [
      {
        "id": "imp_123",
        "status": "completed",
        "total": 2,
        "imported": 2,
        "failed": 0,
        "createdAt": "2026-09-11T13:40:00Z"
      }
    ]
  }
  ```
</ResponseExample>


## Related topics

- [Create Contact Import](/api/contact-imports/create-contact-import.md)
- [Retrieve Contact Import](/api/contact-imports/retrieve-contact-import.md)
- [List Contacts](/api/contacts/list-contacts.md)
- [List Contact Segments](/api/contacts/list-contact-segments.md)
- [List Contact Properties](/api/contact-properties/list-contact-properties.md)
