> ## 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.

# List all verifications

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

Returns a list of verifications associated with your organisation. Results are returned in descending order of creation date, with the most recently created verifications appearing first.

Use this endpoint to retrieve verification requests for display in your application, or to filter by individual, status, account, or group. Results can be narrowed using exact-match filters.

Date parameters must be supplied in ISO 8601 format. Dates submitted in an invalid format will be silently ignored.

The response is limited to a maximum of 1,000 results.

## Parameters

<ParamField path="name" type="string">
  Filter results by exact match on the verification's `name` property.
</ParamField>

<ParamField path="email" type="string">
  Filter results by exact match on the verification's `email` property.
</ParamField>

<ParamField path="status" type="string">
  Filter results by exact match on the verification's `status`.

  Valid values include `sent`, `completed`, and `cancelled`.
</ParamField>

<ParamField path="account_id" type="string">
  Filter results by exact match on the `account_id` to list verifications created by a specific account.
</ParamField>

<ParamField path="group_id" type="string">
  Filter results by exact match on the `group_id` to list verifications assigned to a specific group.
</ParamField>

<ParamField path="created_before" type="string">
  Return verifications created before the specified ISO 8601 timestamp.
</ParamField>

<ParamField path="created_after" type="string">
  Return verifications created after the specified ISO 8601 timestamp.
</ParamField>

<ParamField path="completed_before" type="string">
  Return verifications completed before the specified ISO 8601 timestamp.
</ParamField>

<ParamField path="completed_after" type="string">
  Return verifications completed after the specified ISO 8601 timestamp.
</ParamField>

<RequestExample>
  ```bash Endpoint theme={null}
  GET /v2/verifications
  ```
</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>
