Captcha
Lista wszystkich publicznie dostępnych metod interakcji z API.
POST
Captcha verify -/captcha/verify
Metoda zapytania
POSThttps://api.stableproxy.com/v2/captcha/verify
Parametry zapytania
| Identyfikator | Regulamin | Przykład |
|---|---|---|
| challenge_id | requiredstring | 18 |
| x | requiredinteger | 306 |
| actionNie koniecznie | nullablestringregex:/^[a-z0-9_.-]+$/i | 0 |
Przykłady kodu
JavaScript
async function postCaptchaVerify() {
const baseUrl = 'https://api.stableproxy.com/v2';
const req = await fetch(baseUrl + '/captcha/verify', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
"challenge_id": 18,
"x": 306,
"action":
}),
}
);
const res = await req.json();
}