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

# Get Subscriber Import

> Get progress and row outcomes for a queued subscriber import

Returns a company-scoped import by its import ID or batch ID. The API key needs
`subscribers:read`.

<ParamField path="importId" type="string" required>
  Import ID or batch ID returned by the create endpoint.
</ParamField>

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/subscribers/imports/import_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "import": {
      "id": "import_abc123",
      "batchId": "batch_abc123",
      "fileName": "copper-export.csv",
      "status": "completed",
      "totalRows": 23,
      "emailCount": 23,
      "duplicateRows": 0,
      "addedCount": 22,
      "updatedCount": 0,
      "skippedCount": 0,
      "failedCount": 1,
      "processedCount": 23,
      "totalChunks": 1,
      "completedChunks": 1,
      "failedChunks": 0,
      "skippedReasons": {},
      "failedReasons": { "invalid_phone": 1 },
      "failedChunkReasons": {}
    }
  }
  ```
</ResponseExample>
