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

> Check the status and statistics of a contact import job.

Inspect details, progress, and error counts for a specific bulk import.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the contact import.
</ParamField>

### Response

<ResponseField name="data" type="object">
  <ResponseField name="id" type="string">The import ID.</ResponseField>
  <ResponseField name="status" type="string">Current status (`completed`, `processing`, `failed`).</ResponseField>
  <ResponseField name="total" type="number">Total records.</ResponseField>
  <ResponseField name="imported" type="number">Successfully processed contacts.</ResponseField>
  <ResponseField name="failed" type="number">Failed count.</ResponseField>
  <ResponseField name="createdAt" type="string">Creation timestamp.</ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.mailofly.com/api/v1/contact-imports/imp_123 \
    -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

- [List Contact Imports](/api/contact-imports/list-contact-imports.md)
- [Create Contact Import](/api/contact-imports/create-contact-import.md)
- [Retrieve Contact](/api/contacts/get-contact.md)
- [Retrieve Contact Topics](/api/contacts/retrieve-contact-topics.md)
- [Retrieve Contact Property](/api/contact-properties/retrieve-contact-property.md)
