> ## 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 /accounts/profile

인증된 사용자 계정의 상세 정보(프로필·구독 플랜 등)를 반환합니다.

### 응답

<ResponseField name="id" type="string">
  사용자 고유 식별자입니다.
</ResponseField>

<ResponseField name="email" type="string">
  사용자 이메일 주소입니다.
</ResponseField>

<ResponseField name="firstName" type="string">
  사용자 이름입니다.
</ResponseField>

<ResponseField name="lastName" type="string">
  사용자 성입니다.
</ResponseField>

<ResponseField name="company" type="string">
  회사명입니다.
</ResponseField>

<ResponseField name="plan" type="string">
  구독 플랜입니다(`free`, `starter`, `professional`, `enterprise`).
</ResponseField>

<ResponseField name="createdAt" type="string">
  계정 생성 시각(ISO 8601)입니다.
</ResponseField>

<ResponseField name="updatedAt" type="string">
  마지막 프로필 갱신 시각(ISO 8601)입니다.
</ResponseField>

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

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

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

<ResponseExample>
  ```json Success (200) theme={null}
  {
    "id": "user_abc123def456",
    "email": "user@example.com",
    "firstName": "Jane",
    "lastName": "Doe",
    "company": "Acme Inc",
    "plan": "professional",
    "createdAt": "2026-01-01T10:00:00.000Z",
    "updatedAt": "2026-01-15T14:30:00.000Z"
  }
  ```

  ```json Unauthorized (401) theme={null}
  {
    "message": "API key context not found"
  }
  ```
</ResponseExample>
