메인 콘텐츠로 건너뛰기

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.

GET /api-keys

인증된 사용자 계정에 연결된 모든 API 키를 반환합니다. 보안상 전체 키 값은 절대 노출되지 않고 미리보기만 제공됩니다.

응답

apiKeys
array
API 키 객체 배열입니다.
total
number
API 키 총 개수입니다.
curl -X GET https://api.llmgenerator.com/api/v1/api-keys \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "apiKeys": [
    {
      "id": "llm_1706123456_abc123def456",
      "name": "Production Key",
      "keyPreview": "llm_1706...f456",
      "isActive": true,
      "lastUsedAt": "2026-01-20T15:30:00.000Z",
      "createdAt": "2026-01-01T10:00:00.000Z"
    },
    {
      "id": "llm_1706234567_xyz789abc012",
      "name": "Development Key",
      "keyPreview": "llm_1706...c012",
      "isActive": true,
      "lastUsedAt": null,
      "createdAt": "2026-01-15T09:00:00.000Z"
    }
  ],
  "total": 2
}