DocsInteractive API Docs/api/v1/rate-limit-status/
get

/api/v1/rate-limit-status/

Returns the current rate limit state for a test endpoint. Useful for debugging and monitoring rate limit configuration.

Endpoint Info
Base URLapi.bizkithub.com
AuthBearer Token
Methods1
Authentication Required

This endpoint requires a valid API key passed as a query parameter or Bearer token.

Get your API key

Example Request

JavaScript fetch

const response = await fetch("https://api.bizkithub.com/api/v1/rate-limit-status/", {
  method: "GET",
  headers: {
    "Content-Type": "application/json"
  }
});

const data = await response.json();
console.log(data);
get

Example Response

200Success
{
  "success": false,
  "limit": 100,
  "remaining": 97,
  "reset": 0
}

cURL

Command line example

curl -X GET "https://api.bizkithub.com/api/v1/rate-limit-status/" \
  -H "Content-Type: application/json"

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key