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

# get_relay_limits

> Get usage limits and quotas for relay mode

Get usage limits and quotas for relay mode.
Retrieves spending limits, daily/monthly quotas, and current usage
for the wallet address in relay mode. Only available in relay mode.

## Signature

```python theme={null}
client.get_relay_limits()
```

## Returns

Dict containing relay limits (daily limit, used amount, remaining, etc.).

## Raises

* RuntimeError: If called in proxy mode (relay limits are relay-only).

## Examples

```python theme={null}
>>> client = HTTPayerClient(private_key="0x...", network="base")
>>> limits = client.get_relay_limits()
>>> print(f"Daily limit: {limits['dailyLimit']} USDC")
```
