Links
Comment on page

Specify Active superPort

post
https://api.illusory.io
/api:Oj9wVgoa/changeSuper
Set superPort
You may only have 1 proxy activated on superPort at a time. If you activate superPort on another proxy, the previous one will stop receiving requests until you change it back.

Example

In this example, we're performing an HTTP request using axios-npm.
axios({
method: "POST",
headers: { "Content-Type": "application/json" },
url: "https://api.illusory.io/api:Oj9wVgoa/changeSuper",
data: {
// Your apiKey goes here 👇
apiKey: "{YOUR_UNIQUE_API_KEY}",
// Your authEmail goes here 👇
authEmail: "{YOUR_UNIQUE_AUTH_EMAIL}",
proxy: "AT-US-LA1-6666"
},
}).then(function (response) {
console.log(response);
});