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

> Get all projects for an organization.

Returns all projects the authenticated user can access within an organization.

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

## Query parameters

<ParamField query="organization_id" type="string">
  UUID of the organization. Defaults to the user's active organization.
</ParamField>

<ParamField query="page" type="integer">
  Page number. Default: `1`.
</ParamField>

<ParamField query="limit" type="integer">
  Results per page. Default: `10`.
</ParamField>

<ParamField query="search" type="string">
  Filter projects by name.
</ParamField>

<ParamField query="status" type="string">
  Filter by status: `active`, `archived`, or `all`. Default: `all`.
</ParamField>

<ParamField query="with_counts" type="boolean">
  Include site and comment counts. Default: `false`.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "data": [
        {
          "id": "770e8400-e29b-41d4-a716-446655440002",
          "name": "Main Website",
          "organization_id": "660e8400-e29b-41d4-a716-446655440001",
          "created_at": "2026-01-15T00:00:00Z"
        }
      ],
      "current_page": 1,
      "total": 5,
      "per_page": 10
    }
  }
  ```
</ResponseExample>
