메인 콘텐츠로 건너뛰기

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

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

응답

id
string
사용자 고유 식별자입니다.
email
string
사용자 이메일 주소입니다.
firstName
string
사용자 이름입니다.
lastName
string
사용자 성입니다.
company
string
회사명입니다.
plan
string
구독 플랜입니다(free, starter, professional, enterprise).
createdAt
string
계정 생성 시각(ISO 8601)입니다.
updatedAt
string
마지막 프로필 갱신 시각(ISO 8601)입니다.
curl -X GET https://api.llmgenerator.com/api/v1/accounts/profile \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "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"
}