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

# Get Account Info

> Check your Enrow account credit balance and registered webhook URLs with a single authenticated GET request

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

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

Retrieve your current credit balance and registered webhooks. Authenticate every request with your [API key](/authentication) in the `x-api-key` header. No body payload is needed — account information is retrieved from the API key.

## Response

### 200 — Account info

<ResponseField name="credits" type="number">
  Your current credit balance. See [Credits & billing](/credits-billing) to understand how credits are consumed per endpoint.
</ResponseField>

<ResponseField name="webhooks" type="array">
  Array of your registered webhook URLs. May be absent when no webhooks are configured. See [How webhooks work](/how-webhooks-work).
</ResponseField>

### Error Responses

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

<Note>
  A `401` response means your API key is missing or invalid. See [Error handling](/error-handling) for the full list of status codes and response formats.
</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>

## Next steps

<CardGroup cols={2}>
  <Card title="Credits & billing" icon="coins" href="/credits-billing">
    See how credits are consumed for each endpoint.
  </Card>

  <Card title="Authentication" icon="key" href="/authentication">
    How to pass your API key in the x-api-key header.
  </Card>

  <Card title="Webhooks" icon="bell" href="/how-webhooks-work">
    Get notified automatically when a search completes.
  </Card>

  <Card title="Find an email" icon="envelope" href="/api-reference/email-finder/find-single">
    Search for a professional email address from a name and company.
  </Card>
</CardGroup>
