Captcha verify
/captcha/verifyVerify a slider drop; returns a one-time token to place in the captcha field.
Способ запроса
POSThttps://api.stableproxy.com/v2/captcha/verify
Параметры запроса
| Идентификатор | Правила | Пример |
|---|---|---|
| challenge_id | requiredstring | 18 |
| x | requiredinteger | 306 |
| actionНе обязательно | nullablestringregex:/^[a-z0-9_.-]+$/i | 0 |
Примеры кода
1const baseUrl = "https://api.stableproxy.com/v2";2const response = await fetch(baseUrl + "/captcha/verify", {3 method: "POST",4 headers: {5 "Content-Type": "application/json"6 },7 body: JSON.stringify({8 "challenge_id": 18,9 "x": 306,10 "action": 011 })12});13const data = await response.json();