v13

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-015232292.9 KB
Usage

Get Usage Limits

Retrieve your current rate limits, usage spending, and storage consumption for the billing period.

get/api/users/me/usage-limits

Response

Current rate limits, usage, and storage information.

successboolean

Whether the request was successful.

Example response

{
  "rateLimit": {
    "sync": {
      "requestsPerMinute": 60,
      "maxBurst": 10,
      "remaining": 59,
      "resetAt": "2025-06-20T14:16:00Z"
    },
    "async": {
      "requestsPerMinute": 60,
      "maxBurst": 10,
      "remaining": 59,
      "resetAt": "2025-06-20T14:16:00Z"
    }
  }
}