Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.notte.cc/llms.txt

Use this file to discover all available pages before exploring further.

The API implements rate limiting to ensure fair usage and platform stability.

Rate limit headers

Every response includes headers with your current rate limit status:
HeaderDescription
X-RateLimit-LimitMaximum requests allowed per window
X-RateLimit-RemainingRequests remaining in current window
X-RateLimit-ResetUnix timestamp when the window resets

Rate limit exceeded (429)

{
  "message": "Rate limit exceeded",
  "detail": "Please wait before making more requests"
}

Checking your limits

curl -I https://api.notte.cc/health \
  -H "Authorization: Bearer $NOTTE_API_KEY"
Response headers:
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 95
X-RateLimit-Reset: 1704067200

Increasing limits

Need higher limits? Contact us to discuss enterprise options.