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

# List sites

> Get all sites in a project.

Returns all sites accessible to the authenticated user within the active (or specified) project.

<Note>
  Requires authentication via `X-API-Key: sf_your_api_key_here`.
</Note>

## Query parameters

<ParamField query="project_id" type="string">
  UUID of the project. Defaults to the user's `active_project_id`.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "880e8400-e29b-41d4-a716-446655440003",
        "name": "Main Website",
        "domain": "example.com",
        "api_token": "sc_abc123...",
        "is_active": true,
        "project_id": "770e8400-e29b-41d4-a716-446655440002"
      }
    ]
  }
  ```
</ResponseExample>
