> ## 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.

# Kontoprofil abrufen

> Dieser Endpunkt liefert das Profil des authentifizierten Nutzers.

## GET /accounts/profile

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

### Antwort

<ResponseField name="id" type="string">
  Eindeutige Kennung des Nutzers.
</ResponseField>

<ResponseField name="email" type="string">
  E-Mail-Adresse des Nutzers.
</ResponseField>

<ResponseField name="firstName" type="string">
  Vorname des Nutzers.
</ResponseField>

<ResponseField name="lastName" type="string">
  Nachname des Nutzers.
</ResponseField>

<ResponseField name="company" type="string">
  Firmenname des Nutzers.
</ResponseField>

<ResponseField name="plan" type="string">
  Abonnementtarif (`free`, `starter`, `professional`, `enterprise`).
</ResponseField>

<ResponseField name="createdAt" type="string">
  ISO-8601-Zeitstempel der Kontoerstellung.
</ResponseField>

<ResponseField name="updatedAt" type="string">
  ISO-8601-Zeitstempel der letzten Profilaktualisierung.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.llmgenerator.com/api/v1/accounts/profile \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch(
    'https://api.llmgenerator.com/api/v1/accounts/profile',
    {
      headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
    }
  );

  const profile = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json Success (200) theme={null}
  {
    "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"
  }
  ```

  ```json Unauthorized (401) theme={null}
  {
    "message": "API key context not found"
  }
  ```
</ResponseExample>
