GET

Rate Limits

System
3 min read

Get current rate limit status and quotas for your API key.

GEThttps://api.videopilot.app/api/rate-limits

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:

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