POST
/
v1
/
proxies
/
deploy
curl --request POST \
  --url https://cmd.illusory.io/v1/proxies/deploy \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "proxies": [
    [
      {
        "isp": "Verizon",
        "location": "Austin",
        "interval": 1,
        "period": "weekly"
      },
      {
        "isp": "AT&T",
        "location": "Cleveland",
        "interval": 2,
        "period": "monthly"
      }
    ]
  ]
}'
{
  "ok": true,
  "message": "Sent deploy request successfully. Your proxies should be deployed shortly to your dashboard.",
  "data": {
    "user_id": "user_1234567890",
    "total": 25
  }
}

Adds a new proxy server to your account. You can deploy a proxy server in any of the available locations.

When deploying a proxy, funds will be deducted from your Illusory Wallet. Ensure you have sufficient funds before deploying.

Authorizations

Authorization
string
header
required

The Authorization header is used to authenticate with the API using your Master API key. Value is of the format Bearer YOUR_KEY_HERE.

Body

application/json
Deploy proxy details

The body is of type object.

Response

202
application/json
Server response

The response is of type object.