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

# Get webhook subscription

> Returns a single webhook subscription by ID

Requires `monitors:read` permission.

<ParamField path="id" type="string" required>
  Webhook subscription ID (UUID)
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "url": "https://example.com/webhooks/larm",
      "events": ["monitor.state_changed", "monitor.created"],
      "enabled": true,
      "inserted_at": "2025-03-01T12:00:00Z",
      "updated_at": "2025-03-01T12:00:00Z"
    }
  }
  ```
</ResponseExample>
