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

# Retrieve a verification

<Info>
  Verification endpoints use the `/v2/` namespace. `/v1/` endpoints are deprecated and will be removed without notice to new integrators.
</Info>

Retrieves the details of an existing verification in your organisation.

This endpoint is typically used to look up a specific verification request — for example, to determine its current status, delivery settings, or whether screening and biometrics were enabled. You’ll need the verification’s unique ID to make this request.

## Parameters

<ParamField path="id" type="string">
  The unique identifier for the verification.
</ParamField>

<RequestExample>
  ```bash Endpoint theme={null}
  GET /v2/verifications/:id
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "9d2e4b8c1a7f53e06c4b9d2a8e1f0c57",
    "name": "Ted Annature",
    "email": "ted@annature.com.au",
    "mobile": "+61422000000",
    "mobile_otp": "+61422000000",
    "message": "Lorem ipsum dolor sit amet.",
    "message_sms": "Lorem ipsum dolor sit amet: {{token}}",
    "status": "completed",
    "account_id": "c64ce66b70b21c03bfd5dfa0ab14b730",
    "group_id": "a5a885caee6286a54ad7bbd4ab5400e9",
    "shared": true,
    "warning": "document_expired",
    "muted": false,
    "screening": true,
    "biometrics": true,
    "created": "2026-08-24T00:00:00Z",
    "cancelled": "2026-08-24T00:00:00Z",
    "completed": "2026-08-24T00:00:00Z",
    "purging": "2026-08-24T00:00:00Z",
    "purged": "2026-08-24T00:00:00Z",
    "metadata": {
      "customer_id": "12345"
    }
  }
  ```
</ResponseExample>
