Zum Hauptinhalt springen

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

Dieser Endpunkt gibt ausführliche Informationen zum Konto des authentifizierten Nutzers zurück, einschließlich Profil und Abonnementtarif.

Antwort

id
string
Eindeutige Kennung des Nutzers.
email
string
E-Mail-Adresse des Nutzers.
firstName
string
Vorname des Nutzers.
lastName
string
Nachname des Nutzers.
company
string
Firmenname des Nutzers.
plan
string
Abonnementtarif (free, starter, professional, enterprise).
createdAt
string
ISO-8601-Zeitstempel der Kontoerstellung.
updatedAt
string
ISO-8601-Zeitstempel der letzten Profilaktualisierung.
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"
}