Get captcha challenge
/captcha/challengeIssue a new slider challenge (background + ethernet piece + geometry).
Query method
GEThttps://api.stableproxy.com/v2/captcha/challenge
Query parameters
| Identifier | Regulations | Example |
|---|---|---|
| actionNot necessarily | nullablestringregex:/^[a-z0-9_.-]+$/i | 8 |
Code examples
1const baseUrl = "https://api.stableproxy.com/v2";2const response = await fetch(baseUrl + "/captcha/challenge", {3 method: "GET",4 headers: {5 "Content-Type": "application/json"6 }7});8const data = await response.json();