Know Your Limits

To get your API Quota information, use the following steps:

Code Samples

curl -H "x-api-key: YOUR_API_KEY" \
  "https://check-api.quillai.network/api/v1/auth/user/plan/usage"

Note: This API is not real-time; manage your requests internally.

Sample Response

{
    "success": true,
    "data": {
        "apiKeyId": "Mj9RAlfijV3vt3bAnj4182154sbjbmkksmQQ",
        "userName": "johnDoe",
        "email": "johndoe@gmail.com",
        "usageStats": {
            "plan": "Quillcheck-Enterprise",
            "remainingRequests": 36000,
            "totalRequests": 40000,
            "period": "MONTH",
            "rateLimit": "0.5 / Sec",
            "error": null
        }
    }
}

Last updated