Pular para o conteúdo principal

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

Este endpoint retorna informações detalhadas da conta autenticada, incluindo perfil e plano de assinatura.

Resposta

id
string
Identificador único do usuário.
email
string
E-mail do usuário.
firstName
string
Nome do usuário.
lastName
string
Sobrenome do usuário.
company
string
Nome da empresa do usuário.
plan
string
Plano de assinatura (free, starter, professional, enterprise).
createdAt
string
Data de criação da conta em ISO 8601.
updatedAt
string
Data da última atualização do perfil em 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"
}