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

# Python SDK — call limits

> Python SDK reference for reading per-tenant cost caps. Caps are set by the platform team based on plan tier.

`CallLimitsClient` is reachable on every Kataven client as `client.call_limits`. Each method maps to one HTTP endpoint on the [Hub API](/api-reference/introduction); links to the underlying spec entry are inline below.

Read your account's per-tenant cost caps. **Read-only via SDK** — caps are configured by the platform team based on your plan tier and edited only via the Hub UI.

## Methods at a glance

| Method | HTTP                      | Summary                       |
| ------ | ------------------------- | ----------------------------- |
| `get`  | `GET /api/v1/call-limits` | Get this tenant's call limits |

## Reference

### `client.call_limits.get(...)`

Get this tenant's call limits

**HTTP** — `GET /api/v1/call-limits` · [API reference →](/api-reference/introduction#tag/Call%20Limits/operation/getApiV1CallLimits)

```python theme={null}
    def get(self) -> Dict[str, Any]:
```

Returns the configured caps that gate every outbound originate request. Live counters are not exposed.
