---
title: "Get Spending Caps"
method: GET
path: "/v1/organizations/billing/spending-caps"
tags: ["Organization Billing"]
---

# Get Spending Caps

`GET /v1/organizations/billing/spending-caps`

Get current spending cap configuration.

Returns spending cap settings including budget limits, alert thresholds,
and current spending status.

**Requirements:**
- Read permission

**Example:**
```python
response = await client.get("/v1/organizations/billing/spending-caps")
print(f"Monthly budget: ${response['monthly_spending_budget_usd']}")
print(f"Hard cap enabled: {response['hard_cap_enabled']}")
print(f"Current spending: ${response['current_spending_usd']}")
```

## Response `200`

Successful Response

- SpendingCapsResponse — Response with spending cap configuration.
  - `monthly_spending_budget` integer, nullable — Soft spending limit in USD cents (null = unlimited)
  - `monthly_spending_budget_usd` number, nullable — Soft spending limit in USD
  - `spending_alert_thresholds` integer[] — Percentage thresholds for spending alerts
  - `spending_alerts_enabled` boolean — Whether spending alerts are enabled
  - `spending_alerts_sent` integer[] — Alert thresholds triggered in current billing cycle
  - `hard_spending_cap` integer, nullable — Hard spending limit in USD cents (null = no hard cap)
  - `hard_spending_cap_usd` number, nullable — Hard spending limit in USD
  - `hard_cap_enabled` boolean — Whether hard spending cap is enforced
  - `current_spending_cents` integer, required — Current spending in current billing cycle (cents)
  - `current_spending_usd` number, required — Current spending in current billing cycle (USD)
  - `budget_percentage_used` number, nullable — Percentage of budget used (null if no budget set)

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

[API](https://skmtc.net/mixpeek/apis/mixpeek-api.md) · [All operations](https://skmtc.net/mixpeek/apis/mixpeek-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mixpeek/mixpeek-api/revisions/23e05292e326/schema)
