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

# Status

Poll this endpoint with the `enrichmentId` returned by [Enrich Contact](../company/contactEnrich) or [Bulk Enrich Contacts](../company/contactEnrichBulk).

## Request

#### Path

<ParamField path="enrichmentId" type="string" required>
  Obfuscated id returned when creating an enrichment.
</ParamField>

## Response

While `status` is `PENDING` or `PROCESSING`, the response includes a `Retry-After` header (in seconds) suggesting when to poll again.

<ResponseField name="enrichmentId" type="string">
  Same value as the `enrichmentId` path parameter.
</ResponseField>

<ResponseField name="status" type="string">
  One of:

  * `PENDING` — queued, not yet picked up.
  * `PROCESSING` — actively being worked on.
  * `COMPLETED` — finished; `data` contains the result.
  * `FAILED` — the enrichment job failed.
  * `TIMED_OUT` — stuck processing past the expected time; submit a new enrichment.
  * `EXPIRED` — previously completed, but the underlying charge-dedup window has since lapsed; submit a new enrichment to refresh it.
</ResponseField>

<ResponseField name="data" type="object | null">
  Present (non-null) only when `status` is `COMPLETED`.

  <Expandable title="data properties">
    <ResponseField name="email" type="string | null">
      The contact's enriched email address, or `null` when not found or not requested.
    </ResponseField>

    <ResponseField name="mobileNumber" type="string | null">
      The contact's enriched mobile phone number, or `null` when not found or not requested.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Response - 200 (COMPLETED) theme={null}
  {
      "enrichmentId": "8817263",
      "status": "COMPLETED",
      "data": {
          "email": "info@bizzy.ai",
          "mobileNumber": "+32 000 00 00 00"
      }
  }
  ```
</ResponseExample>

<ResponseExample>
  ```json Response - 200 (PROCESSING) theme={null}
  {
      "enrichmentId": "8817263",
      "status": "PROCESSING",
      "data": null
  }
  ```
</ResponseExample>
