> ## Documentation Index
> Fetch the complete documentation index at: https://docs.enrow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Kontoinformationen

> Prüfen Sie Ihr Enrow-Guthaben und Ihre registrierten Webhook-URLs mit einer einzigen authentifizierten GET-Anfrage

<Badge color="blue">GET</Badge>

```
https://api.enrow.io/account/info
```

Rufen Sie Ihr aktuelles Guthaben und Ihre registrierten Webhooks ab. Authentifizieren Sie jede Anfrage mit Ihrem [API-Schlüssel](/de/authentication) im Header `x-api-key`. Es ist kein Body erforderlich — die Kontoinformationen werden anhand des API-Schlüssels ermittelt.

## Response

### 200 — Kontoinformationen

<ResponseField name="credits" type="number">
  Ihr aktuelles Guthaben. Unter [Guthaben & Abrechnung](/de/credits-billing) erfahren Sie, wie das Guthaben pro Endpunkt verbraucht wird.
</ResponseField>

<ResponseField name="webhooks" type="array">
  Array Ihrer registrierten Webhook-URLs. Kann fehlen, wenn keine Webhooks konfiguriert sind. Siehe [So funktionieren Webhooks](/de/how-webhooks-work).
</ResponseField>

### Fehlerantworten

| Code    | Message                    |
| ------- | -------------------------- |
| **401** | `This apikey is not valid` |

<Note>
  Eine `401`-Antwort bedeutet, dass Ihr API-Schlüssel fehlt oder ungültig ist. Unter [Fehlerbehandlung](/de/error-handling) finden Sie die vollständige Liste der Statuscodes und Antwortformate.
</Note>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url https://api.enrow.io/account/info \
    --header 'x-api-key: YOUR_API_KEY'
  ```

  ```javascript Node.js theme={null}
  const response = await fetch('https://api.enrow.io/account/info', {
    headers: {
      'x-api-key': process.env.ENROW_API_KEY
    }
  });

  const data = await response.json();
  console.log(`Credits: ${data.credits}`);
  ```

  ```python Python theme={null}
  import requests
  import os

  url = "https://api.enrow.io/account/info"
  headers = {
      "x-api-key": os.getenv("ENROW_API_KEY")
  }

  response = requests.get(url, headers=headers)
  data = response.json()
  print(f"Credits: {data['credits']}")
  ```
</RequestExample>

<ResponseExample>
  ```json Success Response theme={null}
  {
    "credits": 36000,
    "webhooks": [
      "https://api.mysuperwebsite/api/webhook"
    ]
  }
  ```

  ```json Error Response theme={null}
  {
    "message": "This apikey is not valid"
  }
  ```
</ResponseExample>

## Nächste Schritte

<CardGroup cols={2}>
  <Card title="Guthaben & Abrechnung" icon="coins" href="/de/credits-billing">
    Erfahren Sie, wie das Guthaben für jeden Endpunkt verbraucht wird.
  </Card>

  <Card title="Authentifizierung" icon="key" href="/de/authentication">
    So übergeben Sie Ihren API-Schlüssel im Header x-api-key.
  </Card>

  <Card title="Webhooks" icon="bell" href="/de/how-webhooks-work">
    Werden Sie automatisch benachrichtigt, wenn eine Suche abgeschlossen ist.
  </Card>

  <Card title="E-Mail finden" icon="envelope" href="/de/api-reference/email-finder/find-single">
    Suchen Sie eine geschäftliche E-Mail-Adresse anhand von Name und Unternehmen.
  </Card>
</CardGroup>
