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

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

POST

Captcha demo protected Captcha Demo-only endpoint guarded by the captcha rule; used by the test page. -/captcha/demo-protected

Query method

POSThttps://api.stableproxy.com/v2/captcha/demo-protected

Query parameters

IdentifierRegulationsExample
captcha-keyNot necessarilynullablestring"6Le6gTwUAAA ... secret ...tjbYd6IAYN_"
g-recaptcha-responserequiredapp\_rules\_sp_captcha_rule"03AFcWeA690BhJU7VIxoIpsXXdDx7IVllNVz804lKvWNIBYmF42ALfY18TY4cjjQ0sY_...."

Code examples

async function postCaptchaDemoProtected() {
   const baseUrl = 'https://api.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/captcha/demo-protected', {
         method: 'POST',
         headers: {
            'Content-Type': 'application/json'
         },
         body: JSON.stringify({
            "captcha-key": "6Le6gTwUAAA ... secret ...tjbYd6IAYN_",
            "g-recaptcha-response": "03AFcWeA690BhJU7VIxoIpsXXdDx7IVllNVz804lKvWNIBYmF42ALfY18TY4cjjQ0sY_...."
         }),
      }
   );
   
   const res = await req.json();
}