🤖 Bot 💬 Admin

Ant Bypass API Documentation

Integrate our legendary bypass detection into your own applications seamlessly. Fully supports both Desktop and Mobile execution.

Overview

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.

Endpoints

1. Primary State: Check Verification Status

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.

Parameters

Response Types

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"
}

2. Generate Shortened Link

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.

Parameters

Response Types

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"
}