跳转到主要内容

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
订阅套餐(freestarterprofessionalenterprise)。
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"
}