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

# GitHub Connection Status

> Check the GitHub App installation status

Returns the current GitHub App connection status for the authenticated user.

## Authentication

Requires a valid Bearer token.

## Response

<ResponseField name="connected" type="boolean" required>
  Whether at least one GitHub App installation is connected.
</ResponseField>

<ResponseField name="installations" type="array" required>
  GitHub App installations connected to the authenticated user.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "connected": true,
    "installations": [
      {
        "installation_id": 12345678,
        "account_login": "my-org",
        "account_type": "Organization",
        "connected_at": "2026-05-15T19:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>

## Errors

| Status | Description                             |
| ------ | --------------------------------------- |
| `401`  | Unauthorized — missing or invalid token |
