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

# Retrieve Async Job

> Check the status and retrieve results of an async enrichment job.

<ParamField path="jobId" type="string" required>
  The job UUID returned from `/v1/enrich/async`.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.parsetx.dev/v1/enrich/jobs/84c8a82d-1234-5678-abcd-ef0123456789 \
    -H "X-API-Key: ptx_live_..."
  ```
</RequestExample>

<ResponseExample>
  ```json Response (Complete) theme={null}
  {
    "job_id": "84c8a82d-1234-5678-abcd-ef0123456789",
    "status": "complete",
    "results": [
      {
        "status": "complete",
        "source": "cache",
        "input": "AMZN Mktp US",
        "merchant": "Amazon",
        "domain": "amazon.com",
        "category": "Shopping",
        "mcc_code": "5411",
        "is_subscription": false,
        "confidence": 0.99
      }
    ]
  }
  ```
</ResponseExample>
