> ## 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 GitHub Link

> Get the linked GitHub repository for a project

Returns the GitHub repository linked to the specified project.

## Authentication

Requires a valid Bearer token.

## Path Parameters

<ParamField path="id" type="string" required>
  Project ID (UUID).
</ParamField>

## Response

<ResponseField name="repo_full_name" type="string" required>
  Full repository name (e.g., `"owner/repo"`).
</ResponseField>

<ResponseField name="default_branch" type="string" required>
  Default branch name.
</ResponseField>

<ResponseField name="linked_at" type="string" required>
  ISO 8601 timestamp when the link was created.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "repo_full_name": "my-org/my-repo",
    "default_branch": "main",
    "linked_at": "2025-01-15T10:30:00Z"
  }
  ```
</ResponseExample>

## Errors

| Status | Description                                                     |
| ------ | --------------------------------------------------------------- |
| `401`  | Unauthorized — missing or invalid token                         |
| `404`  | Not Found — project does not exist or no GitHub link configured |
