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

# Get Usage

> Get billing charges and wallet balance

Retrieve your billing history and current wallet balance.

## Request

### Query Parameters

<ParamField query="limit" type="integer" default="50">
  1–200 recent charges
</ParamField>

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "balance": -50.25,
    "charges": [
      {
        "service_type": "DIALER_NUMBER_RENTAL",
        "amount_deducted": 6.00,
        "units_used": "1 month",
        "new_balance": -44.25,
        "metadata": { "number": "+919876543210" },
        "created_at": "2026-09-24T10:00:00Z"
      },
      {
        "service_type": "DIALER_CALL",
        "amount_deducted": 0.15,
        "units_used": "50 seconds",
        "new_balance": -44.40,
        "metadata": { "from": "+919876543210", "to": "+919999999999" },
        "created_at": "2026-09-24T10:30:00Z"
      }
    ]
  }
}
```

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.60db.ai/dialer/usage?limit=50 \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  const usage = await client.dialer.billing.usage({ limit: 50 });
  ```

  ```python Python theme={null}
  usage = client.dialer.billing.usage(limit=50)
  ```
</RequestExample>
