### GET /bypass/services Source: https://api.voltar.lol/docs/index Retrieves a list of all available services for bypassing links. ```APIDOC ## GET /bypass/services ### Description Retrieves a list of all available services for bypassing links. ### Method GET ### Endpoint /bypass/services ### Request Example ```json { "request": "curl https://api.voltar.lol/bypass/services" } ``` ### Response #### Success Response (200) (Response body schema not provided in the input, but typically would contain a list of services.) ``` -------------------------------- ### GET /botd Source: https://api.voltar.lol/docs/index Retrieves information related to bot detection. Requires an 'id' query parameter. ```APIDOC ## GET /botd ### Description Retrieves information related to bot detection. Requires an 'id' query parameter. ### Method GET ### Endpoint /botd ### Parameters #### Query Parameters - **id** (string) - Required - The identifier for bot detection. ### Request Example ```json { "request": "curl 'https://api.voltar.lol/botd?id='" } ``` ### Response #### Success Response (200) - **status** (string) - Indicates the success of the operation. - **result** (string) - The result of the bot detection. - **cached** (boolean) - Indicates if the result was served from cache. #### Response Example ```json { "status": "success", "result": "https://voltar.lol", "cached": false } ``` ``` -------------------------------- ### Get Available Bypass Services (Shell Curl) Source: https://api.voltar.lol/docs/index This endpoint fetches a list of all available services for bypassing URLs from the Voltar API. It is a simple GET request and returns a 200 status code. ```shell curl https://api.voltar.lol/bypass/services ``` -------------------------------- ### Get Bot ID (Shell Curl) Source: https://api.voltar.lol/docs/index This endpoint queries the Voltar API to get a bot ID. It requires an 'id' query parameter. The response is a status code 200. ```shell curl 'https://api.voltar.lol/botd?id=' ``` -------------------------------- ### GET /bypass/getTaskResult/{taskId} Source: https://api.voltar.lol/docs/index Retrieves the result of a bypass task using its ID. Requires an API key. ```APIDOC ## GET /bypass/getTaskResult/{taskId} ### Description Retrieves the result of a bypass task using its ID. Requires an API key. ### Method GET ### Endpoint /bypass/getTaskResult/{taskId} ### Parameters #### Path Parameters - **taskId** (string) - Required - The ID of the task to get the result for. #### Headers - **x-api-key** (string) - Required - The API key to use for the request. Purchase from the Discord server. ### Request Example ```json { "request": "curl 'https://api.voltar.lol/bypass/getTaskResult/{taskId}' \n --header 'x-api-key: '" } ``` ### Response #### Success Response (200) - **status** (string) - Indicates the success of the operation. - **result** (string) - The bypassed URL. - **cached** (boolean) - Indicates if the result was served from cache. #### Response Example ```json { "status": "success", "result": "https://voltar.lol", "cached": false } ``` ``` -------------------------------- ### Get Bypass Task Result (Shell Curl) Source: https://api.voltar.lol/docs/index This endpoint retrieves the result of a bypass task from the Voltar API. It requires the 'taskId' in the path and an 'x-api-key' header. It handles status codes 200 and 400. ```shell curl 'https://api.voltar.lol/bypass/getTaskResult/{taskId}' \ --header 'x-api-key: ' ``` -------------------------------- ### POST /bypass/createTask Source: https://api.voltar.lol/docs/index Creates a task to bypass a URL. Requires an API key and a JSON payload with the URL and an optional cache boolean. Also accepts an optional x-user-id header. ```APIDOC ## POST /bypass/createTask ### Description Creates a task to bypass a URL. Requires an API key and a JSON payload with the URL and an optional cache boolean. Also accepts an optional x-user-id header. ### Method POST ### Endpoint /bypass/createTask ### Parameters #### Headers - **x-user-id** (string) - Optional - The user ID. - **x-api-key** (string) - Required - The API key to use for the request. Purchase from the Discord server. #### Request Body - **url** (string) - Required - The link to be bypassed. - **cache** (boolean) - Optional - Whether to cache the result. ### Request Example ```json { "request": "curl https://api.voltar.lol/bypass/createTask \n --request POST \n --header 'x-user-id: ' \n --header 'x-api-key: ' \n --header 'Content-Type: application/json' \n --data '{ \n \"url\": \"\", \n \"cache\": true \n}'" } ``` ### Response #### Success Response (200) - **status** (string) - Indicates the success of the operation. - **taskId** (string) - The ID of the created task. - **message** (string) - A message confirming task creation. #### Response Example ```json { "status": "success", "taskId": "550e8400-e29b-41d4-a716-446655440000", "message": "Task created successfully" } ``` ``` -------------------------------- ### POST /bypass Source: https://api.voltar.lol/docs/index Bypasses a given URL. Requires an API key and a JSON payload containing the URL and an optional cache boolean. ```APIDOC ## POST /bypass ### Description Bypasses a given URL. Requires an API key and a JSON payload containing the URL and an optional cache boolean. ### Method POST ### Endpoint /bypass ### Parameters #### Headers - **x-api-key** (string) - Required - The API key to use for the request. Purchase from the Discord server. #### Request Body - **url** (string) - Required - The link to be bypassed. - **cache** (boolean) - Optional - Whether to cache the result. ### Request Example ```json { "request": "curl https://api.voltar.lol/bypass \n --request POST \n --header 'x-api-key: ' \n --header 'Content-Type: application/json' \n --data '{ \n \"url\": \"\", \n \"cache\": true \n}'" } ``` ### Response #### Success Response (200) - **status** (string) - Indicates the success of the operation. - **result** (string) - The bypassed URL. - **cached** (boolean) - Indicates if the result was served from cache. #### Response Example ```json { "status": "success", "result": "https://voltar.lol", "cached": false } ``` ``` -------------------------------- ### Create Bypass Task (Shell Curl) Source: https://api.voltar.lol/docs/index This endpoint creates a task to bypass a URL with the Voltar API. It requires 'x-api-key' and optionally 'x-user-id' headers, along with a JSON body specifying the 'url' and 'cache' options. It returns status codes 200 or 400. ```shell curl https://api.voltar.lol/bypass/createTask \ --request POST \ --header 'x-user-id: ' \ --header 'x-api-key: ' \ --header 'Content-Type: application/json' \ --data '{ "url": "", "cache": true }' ``` -------------------------------- ### Bypass URL (Shell Curl) Source: https://api.voltar.lol/docs/index This endpoint bypasses a given URL using the Voltar API. It requires an 'x-api-key' header and a JSON body containing the 'url' and an optional 'cache' boolean. It supports status codes 200 and 400. ```shell curl https://api.voltar.lol/bypass \ --request POST \ --header 'x-api-key: ' \ --header 'Content-Type: application/json' \ --data '{ "url": "", "cache": true }' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.