Check if visitor is a bot or not
POST
/checkThis endpoint allows you to determine if a visitor is a bot using Killbot's advanced AI core. By sending a request to this endpoint with the visitor's details, the API analyzes the data and returns a response indicating if the visitor being a bot. This helps in protecting your site from malicious traffic and ensuring only genuine users access your services.
Request
Header Params
X-API-Key
string
required
The API key to authorize the request.
Body Params application/x-www-form-urlencoded
ip
string
required
IP Address to check
ua
string
required
User-Agent to check
Request samples
Responses
Success (200)
Bad Request(400)
Unauthorized request(401)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
success
boolean
required
block
boolean
required
type
string
required
proxyType
null
required
IPlocation
object
required
isp
string
required
continent
string
required
country
string
required
countryCode
string
required
zip
string
required
city
string
required
quota
string
required
Example
Real visitor
{
"success": true,
"block": false,
"type": "visitor",
"proxyType": null,
"IPlocation": {
"isp": "Orange",
"continent": "France",
"country": "France",
"countryCode": "FR",
"zip": "34200",
"city": "Sète"
},
"quota": "95303/100000"
}
Last modified: 7 months ago