Skip to main content
GET
/
projects
List projects
curl --request GET \
  --url https://api.surefeedback.com/api/v1/projects \
  --header 'X-API-Key: <api-key>'
{
  "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
  }
}
Returns all projects the authenticated user can access within an organization.
Requires authentication via X-API-Key: sf_your_api_key_here.

Query parameters

organization_id
string
UUID of the organization. Defaults to the user’s active organization.
page
integer
Page number. Default: 1.
limit
integer
Results per page. Default: 10.
Filter projects by name.
status
string
Filter by status: active, archived, or all. Default: all.
with_counts
boolean
Include site and comment counts. Default: false.
{
  "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
  }
}