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

# Get Sentry Install URL

> Get the URL to connect Sentry

Returns the URL to initiate the Sentry OAuth flow. Redirect the user to this URL to connect their Sentry account.

## Authentication

Requires a valid Bearer token.

## Response

<ResponseField name="url" type="string" required>
  The Sentry OAuth authorization URL.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "url": "https://sentry.io/oauth/authorize?client_id=..."
  }
  ```
</ResponseExample>

## Errors

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