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

> List all Sentry project links

Returns all links between Aether projects and Sentry projects.

## Authentication

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

## Response

<ResponseField name="links" type="array">
  List of Sentry link objects.

  <Expandable title="Sentry link object">
    <ResponseField name="id" type="string" required>
      Link ID (UUID).
    </ResponseField>

    <ResponseField name="project_id" type="string" required>
      Aether project ID.
    </ResponseField>

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

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

    <ResponseField name="created_at" type="string" required>
      ISO 8601 timestamp.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "links": [
      {
        "id": "e5f6a7b8-9012-34ab-cdef-567890123def",
        "project_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
        "sentry_project_id": "123456",
        "sentry_project_slug": "my-app",
        "created_at": "2025-01-15T10:30:00Z"
      }
    ]
  }
  ```
</ResponseExample>

## Errors

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