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.
A list of all publicly available methods for interacting with the API.
GET
Check site in blacklist Blacklist -/blacklist/check
Query method
GEThttp://apilocal.stableproxy.com/v2/blacklist/check
Query parameters
| Identifier | Regulations | Example |
|---|---|---|
| domain | required | "pay.com" |
Code examples
JavaScript
async function getBlacklistCheck() {
const baseUrl = 'http://apilocal.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();
}