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

# Get usage

> Get current account usage counters.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.wadial.com/api/v1/usage" \
    -H "Authorization: Bearer $WADIAL_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": {
      "activeSessions": 3,
      "totalSessions": 8,
      "sentMessagesThisMonth": 1240,
      "failedMessagesThisMonth": 4,
      "apiRequestsThisMonth": 3110,
      "webhooksConfigured": 2
    }
  }
  ```
</ResponseExample>
