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

# API キー詳細の取得

> 特定の API キーの詳細を取得するエンドポイントです。

## GET /api-keys/{keyId}

1 つの API キーの詳細を返します。セキュリティのためキー値の全文は含みません。

### パスパラメーター

<ParamField path="keyId" type="string" required>
  取得する API キーの ID。
</ParamField>

### レスポンス

<ResponseField name="id" type="string">
  API キーの一意な識別子。
</ResponseField>

<ResponseField name="name" type="string">
  ユーザーが付けたキーの名称。
</ResponseField>

<ResponseField name="keyPreview" type="string">
  マスクされたキーのプレビュー（例: `llm_1234...abcd`）。
</ResponseField>

<ResponseField name="isActive" type="boolean">
  キーが有効で使用可能かどうか。
</ResponseField>

<ResponseField name="lastUsedAt" type="string">
  最終利用日時の ISO 8601 タイムスタンプ。
</ResponseField>

<ResponseField name="createdAt" type="string">
  作成日時の ISO 8601 タイムスタンプ。
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.llmgenerator.com/api/v1/api-keys/llm_1706123456_abc123def456 \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch(
    'https://api.llmgenerator.com/api/v1/api-keys/llm_1706123456_abc123def456',
    {
      headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
    }
  );

  const key = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json 成功 (200) theme={null}
  {
    "id": "llm_1706123456_abc123def456",
    "name": "Production Key",
    "keyPreview": "llm_1706...f456",
    "description": null,
    "permissions": [],
    "isActive": true,
    "lastUsedAt": "2026-01-20T15:30:00.000Z",
    "expiresAt": null,
    "createdAt": "2026-01-01T10:00:00.000Z"
  }
  ```

  ```json 見つからない (404) theme={null}
  {
    "message": "API key not found"
  }
  ```

  ```json 禁止 (403) theme={null}
  {
    "message": "Access denied to this API key"
  }
  ```
</ResponseExample>
