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

# Get organization

> Retrieve a single organization by ID.

Returns the details of a specific organization.

<Note>
  Requires authentication. The user must be a member of the organization.
</Note>

## Path parameters

<ParamField path="id" type="string" required>
  UUID of the organization.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "id": "660e8400-e29b-41d4-a716-446655440001",
      "name": "Acme Corp",
      "owner_id": "550e8400-e29b-41d4-a716-446655440000"
    }
  }
  ```
</ResponseExample>
