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

> Get all organizations the authenticated user belongs to.

Returns all organizations the authenticated user is a member of.

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

## Response

<ResponseField name="data" type="array">
  Array of organization objects.

  <Expandable title="Organization fields">
    <ResponseField name="id" type="string">UUID of the organization.</ResponseField>
    <ResponseField name="name" type="string">Organization name.</ResponseField>
    <ResponseField name="owner_id" type="string">UUID of the organization owner.</ResponseField>
    <ResponseField name="created_at" type="string">ISO 8601 creation timestamp.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "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"
      }
    ]
  }
  ```
</ResponseExample>
