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

# Get Job Status

> Get the status and progress of an import job

Get detailed status and progress for a specific import job.

## Path Parameters

<ParamField path="id" type="string" required>
  Job ID returned from import\_contacts
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/jobs/job_abc123" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "job_id": "job_abc123",
      "status": "PROCESSING",
      "progress": {
        "current_stage": "extracting_prospects",
        "stages": {
          "ingesting_contacts": { "contacts_fetched": 5, "contacts_total": 5 },
          "extracting_prospects": { "prospects_found": 120 },
          "enriching_prospects": { "prospects_enriched": 0 },
          "processing_companies": { "companies_enriched": 0 },
          "creating_relationships": { "relationships_created": 0 }
        }
      },
      "created_at": "2025-03-15T10:00:00Z"
    }
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": { "message": "Job not found", "code": "NOT_FOUND" }
  }
  ```
</ResponseExample>
