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

# List Sentry Projects

> List Sentry projects available for linking

Returns a list of Sentry projects from the connected organization that can be linked to Aether projects.

## Authentication

Requires a valid Bearer token. Requires an active Sentry connection.

## Response

<ResponseField name="projects" type="array">
  List of Sentry projects.

  <Expandable title="Sentry project object">
    <ResponseField name="id" type="string" required>
      Sentry project ID.
    </ResponseField>

    <ResponseField name="slug" type="string" required>
      Sentry project slug.
    </ResponseField>

    <ResponseField name="name" type="string" required>
      Sentry project name.
    </ResponseField>

    <ResponseField name="platform" type="string">
      Project platform (e.g., `"javascript"`, `"python"`).
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "projects": [
      {
        "id": "123456",
        "slug": "my-app",
        "name": "My App",
        "platform": "javascript"
      }
    ]
  }
  ```
</ResponseExample>

## Errors

| Status | Description                             |
| ------ | --------------------------------------- |
| `401`  | Unauthorized — missing or invalid token |
| `403`  | Forbidden — no Sentry connection        |
