POST /accounts
신규 사용자 계정을 생성합니다. 공개 엔드포인트이며 인증이 필요하지 않습니다.
요청 본문
계정에 부여된 최초 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"
}