Integrate our legendary bypass detection into your own applications seamlessly. Fully supports both Desktop and Mobile execution.
Our API enables developers to dynamically shorten links and implement advanced verification. Use this API to request shortener URLs programmatically and track success/failure states. Both endpoints must be called from your server to avoid exposing your API Key.
GET https://AntiBypass.csbots.in/api?api=YOUR_API_KEY&alias=ALIAS
Use this endpoint to check if a specific shortened link (identified by its alias) has been successfully verified/bypassed by a user.
Success (Verified) Returned when the user has successfully viewed the shortener.
{
"status": "success",
"stage": "final"
}
Pending / Failed Returned when the view is not yet verified or the alias/API key is invalid.
{
"status": "pending"
}
GET https://AntiBypass.csbots.in/api?api=YOUR_API_KEY&url=YOUR_DESTINATION_URL&alias=OPTIONAL_ALIAS
Use this endpoint to create a new shortened link targeting your destination URL.
Success Returned when the short link is successfully generated.
{
"status": "success",
"shortenedUrl": "https://short.site/alias"
}
Failure Modes
{
"status": "error",
"message": "Invalid API key or URL parameter missing"
}