Get captcha challenge

Список всех доступных методов для взаимодействия с API.

GET

Get captcha challenge

/captcha/challenge

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

Способ запроса

GEThttps://api.stableproxy.com/v2/captcha/challenge

Параметры запроса

ИдентификаторПравилаПример
actionНе обязательноnullablestringregex:/^[a-z0-9_.-]+$/i8

Примеры кода

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();