Check site in blacklist
/blacklist/checkCheck website before order
Check website in blacklist before order, some types of blacklist can be enabled or disabled. For example we allow pay sites on mobile proxies.
Метод запита
GEThttps://api.stableproxy.com/v2/blacklist/check
Параметри запиту
| Ідентифікатор | Правила | Приклад |
|---|---|---|
| domain | required | "pay.com" |
Приклади коду
1const baseUrl = "https://api.stableproxy.com/v2";2const response = await fetch(baseUrl + "/blacklist/check", {3 method: "GET",4 headers: {5 "Content-Type": "application/json"6 }7});8const data = await response.json();Приклади відповідей
Success response200application/json
{
"data": {
"target": "pay.com",
"in_blacklist": true,
"all_blacklist": false,
"blacklist": {
"superproxy": true,
"mobile_gb": true,
"mobile_static": true,
"residential_gb": false,
"residential_requests": true,
"shared": true,
"private": false,
"individual": true
}
}
}