Captcha Issue a new slider challenge (background + ethernet piece + geometry).

A list of all publicly available methods for interacting with the API.

GET

Captcha widget.js Captcha Serve the self-contained slider-captcha widget as a JS asset (cross-origin). -/captcha/widget.js

Query method

GEThttps://api.stableproxy.com/v2/captcha/widget.js

Code examples

async function getCaptchaWidget.js() {
   const baseUrl = 'https://api.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/captcha/widget.js', {
         method: 'GET',
         headers: {
            'Content-Type': 'application/json'
         }
      }
   );
   
   const res = await req.json();
}