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

IdentifierRegulationsExample
domainrequired"pay.com"

Code examples

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

Examples of answers