Skip to main content
GET
/
organizations
List organizations
curl --request GET \
  --url https://api.surefeedback.com/api/v1/organizations \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": "660e8400-e29b-41d4-a716-446655440001",
      "name": "Acme Corp",
      "owner_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2026-01-01T00:00:00Z"
    }
  ]
}
Returns all organizations the authenticated user is a member of.
Requires authentication via X-API-Key: sf_your_api_key_here.

Response

data
array
Array of organization objects.
{
  "success": true,
  "data": [
    {
      "id": "660e8400-e29b-41d4-a716-446655440001",
      "name": "Acme Corp",
      "owner_id": "550e8400-e29b-41d4-a716-446655440000",
      "created_at": "2026-01-01T00:00:00Z"
    }
  ]
}