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.
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"
}
}
}