Sheetfront

Set Rate Limits

Configure request limits for API keys

Rate limits protect your sheets and account.

Limit Types

LimitScopeReset
MinuteAPI key burst trafficRolling window
AccountShared Google account protectionRolling window
DailyOptional per-key capMidnight UTC
MonthlyPlan usageBilling cycle

Change a Key Limit

  1. Open the connected sheet.
  2. Go to API Keys.
  3. Edit the key.
  4. Set the daily limit.
  5. Save.

Check Remaining Usage

API responses include rate limit headers:

X-RateLimit-Remaining-Minute: 44
X-RateLimit-Remaining-Account: 49
X-RateLimit-Remaining-Monthly: 99999

When a limit is hit, the API returns 429 with Retry-After.

{
  "error": {
    "code": "RATE_LIMIT_EXCEEDED",
    "message": "Rate limit exceeded"
  }
}

Use the interactive API reference for the full header list.

On this page