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

# List Platform API Keys

> Retrieve all platform API keys associated with your account.

## Authentication

Requires JWT token authentication.

## Example Request

```bash theme={null}
curl -X GET https://api.app.shinzo.ai/auth/platform_keys \
  -H "Authorization: Bearer <jwt_token>"
```

## Response

```json theme={null}
{
  "keys": [
    {
      "uuid": "key_abc123def456",
      "name": "CI/CD Pipeline Key",
      "prefix": "sk_shinzo_abc1...",
      "created_at": "2025-01-15T10:00:00Z",
      "last_used_at": "2025-01-20T14:30:00Z",
      "status": "active"
    },
    {
      "uuid": "key_xyz789uvw012",
      "name": "Production Automation",
      "prefix": "sk_shinzo_xyz7...",
      "created_at": "2025-01-10T08:00:00Z",
      "last_used_at": "2025-01-18T09:15:00Z",
      "status": "active"
    }
  ]
}
```

<Note>
  Full key values are not returned when listing. Only the prefix and metadata are shown.
</Note>

## Status Codes

| Code  | Description                  |
| ----- | ---------------------------- |
| `200` | Keys retrieved successfully  |
| `401` | Invalid or missing JWT token |
