Blacklist ### Check 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. Checker
A list of all publicly available methods for interacting with the API.
GET
Check site in blacklist Blacklist ### Check 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. Checker -/blacklist/check
Query method
GEThttps://api.stableproxy.com/v2/blacklist/check
Query parameters
| Identifier | Regulations | Example |
|---|---|---|
| domain | required | "pay.com" |
Code examples
JavaScript
async function getBlacklistCheck() {
const baseUrl = 'https://api.stableproxy.com/v2';
const req = await fetch(baseUrl + '/blacklist/check?' + Object.entries({
"domain": "pay.com"
}).map(([key, value]) => key + "=" + value).join('&'), {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
}
);
const res = await req.json();
}