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

# Get site

> Retrieve a single site by ID.

Returns details for a specific site.

## Path parameters

<ParamField path="id" type="string" required>
  UUID of the site.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "id": "880e8400-e29b-41d4-a716-446655440003",
      "name": "Main Website",
      "domain": "example.com",
      "api_token": "sc_AbCdEfGh123456",
      "is_active": true,
      "allow_guest_commenting": false,
      "request_changes_enabled": true,
      "approvals_enabled": true
    }
  }
  ```
</ResponseExample>
