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

# Info Account

> Controlla il saldo dei crediti del tuo account Enrow e gli URL dei webhook registrati con una singola richiesta GET autenticata

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

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

Recupera il saldo crediti attuale e i webhook registrati. Autentica ogni richiesta con la tua [chiave API](/it/authentication) nell'header `x-api-key`. Non è necessario alcun payload nel corpo della richiesta — le informazioni dell'account vengono recuperate dalla chiave API.

## Risposta

### 200 — Info account

<ResponseField name="credits" type="number">
  Il tuo saldo crediti attuale. Consulta [Crediti e fatturazione](/it/credits-billing) per capire come vengono consumati i crediti per ciascun endpoint.
</ResponseField>

<ResponseField name="webhooks" type="array">
  Array degli URL dei tuoi webhook registrati. Può essere assente quando non è configurato alcun webhook. Consulta [Come funzionano i webhook](/it/how-webhooks-work).
</ResponseField>

### Risposte di errore

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

<Note>
  Una risposta `401` significa che la tua chiave API è mancante o non valida. Consulta [Gestione degli errori](/it/error-handling) per l'elenco completo dei codici di stato e dei formati di risposta.
</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>

## Passi successivi

<CardGroup cols={2}>
  <Card title="Crediti e fatturazione" icon="coins" href="/it/credits-billing">
    Scopri come vengono consumati i crediti per ciascun endpoint.
  </Card>

  <Card title="Autenticazione" icon="key" href="/it/authentication">
    Come passare la tua chiave API nell'header x-api-key.
  </Card>

  <Card title="Webhook" icon="bell" href="/it/how-webhooks-work">
    Ricevi una notifica automatica al completamento di una ricerca.
  </Card>

  <Card title="Trova un'email" icon="envelope" href="/it/api-reference/email-finder/find-single">
    Cerca un indirizzo email professionale a partire da un nome e un'azienda.
  </Card>
</CardGroup>
