---
title: "Get member credit limits"
method: GET
path: "/v1/workspaces/{workspace_id}/billing/credit-limits"
tags: ["billing-usage"]
---

# Get member credit limits

`GET /v1/workspaces/{workspace_id}/billing/credit-limits`

**Plan:** `Enterprise`

Returns each active member's monthly credit limit plus the workspace default, paginated. Members without an explicit limit inherit the workspace default.

## Path parameters

- `workspace_id` string, required — Workspace ID

## Query parameters

- `limit` integer — Maximum results per page.
- `cursor` string — Opaque cursor from a prior response. Omit on the first page.

## Response `200`

OK

- V1BillingCreditLimitsBody
  - `data` V1BillingCreditLimitRow[], nullable, required
    - `monthly_credit_limit` number, double — Explicit monthly credit cap for this member. Absent means no per-member cap is set and the member inherits the workspace default.
    - `user_id` string, required — Member the cap applies to. Join GET /v1/workspaces/{workspace_id}/members for display metadata.
  - `default_monthly_credit_limit` number, double — Workspace default cap applied to members without an explicit per-member limit. Absent when unset (members are bounded only by the workspace balance).
  - `pagination` Pagination, required
    - `has_more` boolean, required — Whether more results are available beyond this page
    - `next_cursor` string, nullable, required — Cursor for the next page; null when there are no more results

## Other responses

- `401` — Missing or invalid API key.
- `402` — This operation or requested configuration requires a workspace plan that includes this feature.
- `403` — The key or caller lacks the required scope or permission.
- `406` — The Accept header excludes every media type this endpoint produces.
- `429` — Too many requests. Retry after the interval in Retry-After when present.
- `default` — Error. The response body uses the standard error envelope; status matches the HTTP status code and type is a machine-readable error code.

---

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