> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shinzo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Discord Status

> Check if a Discord account is linked to an agent.

## Authentication

Requires JWT token or Platform API key via `Authorization: Bearer <token>` header.

<ParamField path="id" type="string" required>Agent UUID</ParamField>

## Example Request

```bash theme={null}
curl -X GET https://api.app.shinzo.ai/v1/agent/a1b2c3d4-e5f6-7890-abcd-ef1234567890/discord/status \
  -H "Authorization: Bearer <token>"
```

## Example Response (Linked)

```json theme={null}
{
  "linked": true,
  "binding": {
    "id": "bind_def456",
    "discord_user_id": "123456789012345678",
    "discord_username": "myuser#1234",
    "queue_mode": "collect",
    "created_at": "2025-01-16T12:00:00Z"
  }
}
```

## Example Response (Not Linked)

```json theme={null}
{
  "linked": false,
  "binding": null
}
```

## Status Codes

| Code  | Description                                      |
| ----- | ------------------------------------------------ |
| `200` | Success                                          |
| `401` | Unauthorized - invalid or missing authentication |
| `404` | Agent not found                                  |
