Documentation

Here you will be able to see the Web-Api documentation easily explained. The API is limited to 1 request per second comming from your Machine/Device. Your server sends us data every 5 minutes.

Retrieve your server whitelisted or Blacklisted IPs amount

GET https://cyberdevelopment.es/BotSentry/publicapi/?apikey={key}&ip={ipport}&action={action}

This endpoint retrieves you your whitelisted or Blacklisted IPs amount. Read Setup in case you don't know how to get some parameters.

Path Parameters

NameTypeDescription

action

string

The action you want to do, in this case, "getwlnumber" or "getblnumber"

ip

string

Your server IP Port

apikey

string

Your server API Key

{ 
    "amount" : "3729" 
}

Retrieve global whitelisted or Blacklisted IPs amount

GET https://cyberdevelopment.es/BotSentry/publicapi/?apikey={key}&ip={ipport}&action={action}

This endpoint retrieves you the global whitelisted or Blacklisted IPs amount. Read Setup in case you dont know how to get some parameters.

Path Parameters

NameTypeDescription

action

string

The action you want to do, in this case "getglwlnumber" or "getglblnumber"

ip

string

Your server IP Port

apikey

string

Your server API Key

{ 
    "amount" : "5688214" 
}

Retrieve the total Prevented Bots number in all servers

GET https://cyberdevelopment.es/BotSentry/publicapi/?apikey={key}&ip={ipport}&action={action}

This endpoint retrieves you the global Prevented Bots number. Read Setup in case you dont know how to get some parameters

Path Parameters

NameTypeDescription

action

string

The action you want to do, in this case "getpbnumber"

ip

string

Your server IP Port

apikey

string

Your server API Key

{
    "amount":"6499882"
}

Retrieve all attacks that your server received and their stats

GET https://cyberdevelopment.es/BotSentry/publicapi/?apikey={key}&ip={ipport}&action={action}

This endpoint retrieves you all the attacks you received in your server with the stats of each of them.

Path Parameters

NameTypeDescription

action

string

The action you want to do, in this case "getattackslog"

ip

string

Your server IP Port

apikey

string

Your server API Key

[
    {
        "datetime":"2020-12-19 17:57:50",
        "blacklistedips":"118"
    },
    {
        "datetime":"2020-12-18 20:19:21",
        "blacklistedips":"193"
    },
    {
        "datetime":"2020-12-17 19:28:52",
        "blacklistedips":"585"
    }
]

Get an image with your server BotSentry statistics

GET https://cyberdevelopment.es/BotSentry/publicapi/?apikey={key}&ip={ipport}&action={action}

This endpoint retrieves you an image with nearly all the stats about your server mentioned above.

Path Parameters

NameTypeDescription

action

string

The action you want to do, in this case "getimage"

ip

string

Your server IP Port

apikey

string

Your server API Key

https://i.imgur.com/tAAPgIW.png

Last updated