GET/api/v6/account/limits

Spending limits

Active spending limits for the account, by scope. Read-only.

Scope and limits

Scope

API key with the account capability granted

Usage limit

30 requests per minute

Active spending limits for the account, by scope. This is a read-only endpoint: limits are configured from the customer portal. Amounts carry 6 decimals and thresholds are the percentages at which an alert fires.

Sensitive financial data

The API key must have the account capability explicitly enabled. Access to all services does NOT grant it: it is granted separately, per key, from the customer portal (Developers → API keys). A key without the capability gets 403.

Responses

200

Active limits.

{
  "success": true,
  "data": {
    "items": [
      {
        "scopeType": "org",
        "scopeRef": "0",
        "amount": "1000000.000000",
        "period": "monthly",
        "thresholds": [80, 95]
      }
    ]
  },
  "meta": {
    "requestId": "b9b1704baffab21150213c02fd853975",
    "timestamp": "2026-06-02T19:43:59+00:00",
    "responseTimeMs": 4.1
  }
}
401

Invalid or missing credentials.

403

The API key lacks the required capability, or the organization cannot run the request.

429

Request limit exceeded. Wait for Retry-After.

Possible errors

Codes this endpoint can return in error.code. The full detail lives in the catalog.

See the full catalog
GET /api/v6/account/limits
curl -X GET 'https://developers.hablame.co/api/v6/account/limits' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer hk_YOUR_API_KEY'

Try-It

Run the request against the real API with your own API key.

The key is used only in your browser for this request. It is not stored nor sent anywhere else.

GET https://developers.hablame.co/api/v6/account/limits

Response

You have not sent a request yet.