Retrieves the Current API Usage Statistics

GET https://botbloker.pro/api/v1/usage

This endpoint allows you to monitor your current usage of BotBlocker.Pro services with your subscription plan. By sending a request to this endpoint, you can retrieve detailed information about the number of requests made and compare them against your quota. This helps you efficiently manage your usage, ensuring you stay within the limits of your subscribed plan.

Note: This API request is free and does not count against your available request quota.

Query Parameters

Name
Type
Description

apikey*

string

Your API Key generated from BotBlocker.Pro Developer page.

cURL Example

curl -X GET "https://botblocker.pro/api/v1/usage?apikey={apikey}"

Response

{
    "data": {
        "package": "Elite",
        "expired": "Fri, 11 Mar 2022 - 12:00 AM",
        "quota": {
            "available": 846372,
            "total_usage": 253628
        }
    },
    "meta": {
        "code": 200,
        "message": "OK"
    }
}

Last updated