GET
Rate Limits
System
3 min read
Get current rate limit status and quotas for your API key.
GET
https://api.videopilot.app/api/rate-limits
This endpoint requires authentication. Include your API key in the Authorization header.
Code Examples
Example requests in multiple programming languages:
curl -X GET https://api.videopilot.app/api/rate-limits \
-H "Authorization: Bearer YOUR_API_KEY"
Responses
Possible responses from this endpoint:
200
Rate limit information
Example Response
JSON
{
"limit": 100,
"remaining": 85,
"reset": 1705123200,
"retryAfter": null
}
401
Authentication required
Try It Out
Test this endpoint directly from your browser:
Your API key is only used for this session and never stored or logged.
GET
/api/rate-limits
Generated cURL Command
Copy this command to use in your terminal
"text-blue-400 font-semibold">curl -X GET https://api.videopilot.app/api/rate-limits \
-H "Authorization: Bearer YOUR_API_KEY"
Response
Make a request to see the response here