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

# Get Single Verification

> Retrieve a single email verification result by ID, including its valid or invalid deliverability qualification

<Badge color="blue">GET</Badge>

```
https://api.enrow.io/email/verify/single?id={id}
```

Retrieve the result of a previously launched email verification using its unique ID. Authenticate every request with your [API key](/authentication) in the `x-api-key` header.

<Info>
  Using a webhook allows you to skip calling this GET endpoint. See [How Webhooks Work](/how-webhooks-work).
</Info>

## Query Parameters

<ParamField query="id" type="string" required>
  The unique identifier returned from the POST request
</ParamField>

## Response

### 200 — Verification finished

<ResponseField name="email" type="string">
  The verified email address
</ResponseField>

<ResponseField name="qualification" type="string">
  `valid` (deliverable) or `invalid` (not deliverable). [Why binary?](/status-codes#why-binary)
</ResponseField>

<ResponseField name="custom" type="object">
  Custom properties passed in the original request, returned as-is
</ResponseField>

### 202 — Verification still in progress

<ResponseField name="qualification" type="string">
  `ongoing`
</ResponseField>

### Error Responses

| Code    | Message                                                  |
| ------- | -------------------------------------------------------- |
| **400** | `The single verif id is missing in the URL query string` |
| **500** | `Could not retrieve single verification results`         |

<Note>
  See [Error handling](/error-handling) for the full list of status codes and response formats. Retrieving a result does not consume credits — only the verification itself does. See [Credits & billing](/credits-billing) for per-endpoint costs.
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.enrow.io/email/verify/single?id=0cf517bc-16e8-45bc-b967-ab9116b3c804' \
    --header 'x-api-key: YOUR_API_KEY'
  ```

  ```javascript Node.js theme={null}
  const verifyId = '0cf517bc-16e8-45bc-b967-ab9116b3c804';
  const response = await fetch(`https://api.enrow.io/email/verify/single?id=${verifyId}`, {
    headers: {
      'x-api-key': process.env.ENROW_API_KEY
    }
  });

  const data = await response.json();
  console.log(data);
  ```

  ```python Python theme={null}
  import requests
  import os

  verify_id = "0cf517bc-16e8-45bc-b967-ab9116b3c804"
  url = f"https://api.enrow.io/email/verify/single?id={verify_id}"
  headers = {
      "x-api-key": os.getenv("ENROW_API_KEY")
  }

  response = requests.get(url, headers=headers)
  print(response.json())
  ```
</RequestExample>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "email": "pam.beesly@dundermifflin.com",
    "custom": {
      "external_id": "do4eIF8jF40x!"
    },
    "qualification": "valid"
  }
  ```

  ```json Error Response theme={null}
  {
    "message": "..."
  }
  ```
</ResponseExample>

## Next steps

<CardGroup cols={2}>
  <Card title="Verify an email" icon="circle-check" href="/api-reference/email-verifier/verify-single">
    Launch a single email verification to get a search `id`.
  </Card>

  <Card title="Verify emails in bulk" icon="layer-group" href="/api-reference/email-verifier/verify-bulk">
    Run multiple email verifications in a single request.
  </Card>

  <Card title="Webhooks" icon="bell" href="/how-webhooks-work">
    Get notified automatically when a verification completes.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    How to pass your API key in the x-api-key header.
  </Card>
</CardGroup>
