메인 콘텐츠로 건너뛰기

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.

POST /accounts

신규 사용자 계정을 생성합니다. 공개 엔드포인트이며 인증이 필요하지 않습니다.
일반적인 경우 사용자는 웹 앱 app.llmgenerator.com에서 가입하는 것을 권장합니다. 이 엔드포인트는 프로그램적인 계정 생성용입니다.

요청 본문

email
string
필수
사용자 이메일 주소입니다. 고유해야 합니다.
firstName
string
필수
사용자 이름(1~50자)입니다.
lastName
string
사용자 성입니다(최대 50자).
company
string
회사명입니다(최대 100자).

응답

success
boolean
계정 생성 성공 여부입니다.
message
string
상태 메시지입니다.
account
object
생성된 계정 정보입니다.
apiKey
string
계정에 부여된 최초 API 키입니다. 안전하게 보관하세요.
curl -X POST https://api.llmgenerator.com/api/v1/accounts \
  -H "Content-Type: application/json" \
  -d '{
    "email": "user@example.com",
    "firstName": "Jane",
    "lastName": "Doe",
    "company": "Acme Inc"
  }'
{
  "success": true,
  "message": "Account created successfully",
  "account": {
    "id": "user_abc123def456",
    "email": "user@example.com",
    "firstName": "Jane",
    "lastName": "Doe",
    "company": "Acme Inc",
    "plan": "free",
    "createdAt": "2026-01-27T10:00:00.000Z"
  },
  "apiKey": "llm_1706345678_initialkeyabc123"
}