> ## Documentation Index
> Fetch the complete documentation index at: https://docs.larm.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get component

> Returns a single component with its linked monitors

Requires `status_pages:read` permission.

<ParamField path="status_page_id" type="string" required>
  Status page UUID
</ParamField>

<ParamField path="id" type="string" required>
  Component UUID
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "API",
      "description": "REST API and GraphQL endpoints",
      "position": 0,
      "component_group_id": null,
      "monitors": [
        {
          "monitor_id": "660e8400-e29b-41d4-a716-446655440000",
          "down_status": "major_outage"
        }
      ],
      "inserted_at": "2026-03-01T12:00:00Z",
      "updated_at": "2026-03-01T12:00:00Z"
    }
  }
  ```
</ResponseExample>
