Get captcha challenge
/captcha/challengeIssue a new slider challenge (background + ethernet piece + geometry).
Способ запроса
GEThttps://api.stableproxy.com/v2/captcha/challenge
Параметры запроса
| Идентификатор | Правила | Пример |
|---|---|---|
| actionНе обязательно | nullablestringregex:/^[a-z0-9_.-]+$/i | 8 |
Примеры кода
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();