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

# Sentry Connection Status

> Check the Sentry integration status

Returns the current Sentry integration connection status for the authenticated user.

## Authentication

Requires a valid Bearer token.

## Response

<ResponseField name="connected" type="boolean" required>
  Whether a Sentry integration is connected.
</ResponseField>

<ResponseField name="organization" type="string">
  Sentry organization slug, if connected.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "connected": true,
    "organization": "my-org"
  }
  ```
</ResponseExample>

## Errors

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