Last Updated: 12/17/2025
title: Handler RateLimits covers:
- ‘openapi:SrcRoutesRateLimitsService_handler’ tags:
- api
- handler
- rateLimits description: API reference for Handler RateLimits
Handler RateLimits
Overview
This endpoint returns the current rate limiting configuration for the API. It provides information about the maximum number of requests allowed per minute.
Operation ID: SrcRoutesRateLimitsService_handler
Request
HTTP Method
GET /rate-limitsParameters
This endpoint does not accept any parameters.
Request Body
This endpoint does not accept a request body.
Response
Success Response
Status Code: 200 OK
Content-Type: application/json
Schema:
{
limitPerMinute: number
}Fields:
limitPerMinute(number): The maximum number of requests allowed per minute.
Error Responses
To be documented: Add error response schemas here
Examples
Request Example
curl -X GET https://api.example.com/rate-limitsResponse Example
{
"limitPerMinute": 480
}Notes
- This endpoint returns a static rate limit configuration of 480 requests per minute.
- No authentication or authorization is enforced on this endpoint based on the current implementation.
- This is an informational endpoint that clients can query to understand the API’s rate limiting policy.