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

# Verify the live install

> Checks the live page for the snippet.

Checks the live page for the snippet.

### Path parameters

<ParamField path="id" type="string" required>
  Site id
</ParamField>

### Response

`object`

<ResponseField name="installed" type="boolean" />

<ResponseField name="checkedAt" type="string (date-time)" />

<ResponseField name="detail" type="string" />

### Status codes

| Code  | Meaning             |
| ----- | ------------------- |
| `200` | Verification result |
| `401` | Error               |
| `404` | Error               |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.example.com/api/admin/sites/{id}/verify' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "installed": true,
    "checkedAt": "2026-08-31T14:22:05Z",
    "detail": "string"
  }
  ```
</ResponseExample>
