Order-API
Lookup Available VPS Plans
Order-API
Lookup Available VPS Plans
Get available VPS plans and their configurations for a given location using your WHMCS credentials and the location ID retrieved from the get locations endpoint.
POST
/
kvm
/
v2
/
get
/
products
curl --request POST \
--url https://order.edisglobal.com/kvm/v2/get/products \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data email=yourwhmc_email \
--data pw=yourwhmc_password \
--data location_id=location_id
{
"data": false,
"products": {
"KVM SMART": {
"id": 1382,
"description": "1024 MB RAM\r\n15 GB SSD\r\n1 IPv4 + /64 IPv6\r\n1 TB Traffic\r\nKVM based",
"addons": {
"operating system": {
"88": {
"id": 88,
"description": "Ubuntu LTS 20.04 64Bit"
},
"92": {
"id": 92,
"description": "alternative / manual installation via VNC"
}
},
"additional ram": {
"396": {
"id": 396,
"description": "+1GB"
},
"416": {
"id": 416,
"description": "no"
}
},
"additional ip": {
"8": {
"id": 8,
"description": "no additional IPs"
},
"9": {
"id": 9,
"description": "1 IP"
}
}
}
},
"KVM STARTER": {
"id": 1387,
"description": "2048 MB RAM\r\n20 GB SSD\r\n1 IPv4 + /64 IPv6\r\n2 TB Traffic\r\nKVM based",
"addons": {
"operating system": {
"208": {
"id": 208,
"description": "Debian 12 (Bookworm) 64Bit"
}
},
"additional drive boost": {
"605": {
"id": 605,
"description": "100GB"
}
}
}
},
"global products": {
"traffic pool": {
"TOP UP TRAFFIC POOL 1 TB": {
"id": 1872,
"description": "EDIS has two traffic zones: Global traffic zone EUR 6,-- per 1 TB"
}
}
}
},
"status": "success"
}
Body
application/x-www-form-urlencoded
Your WHMCS email address.
Your WHMCS password.
The location ID obtained from the get locations
call.
Response
200
application/json
Successfully retrieved available products and configurations.
Was this page helpful?
curl --request POST \
--url https://order.edisglobal.com/kvm/v2/get/products \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data email=yourwhmc_email \
--data pw=yourwhmc_password \
--data location_id=location_id
{
"data": false,
"products": {
"KVM SMART": {
"id": 1382,
"description": "1024 MB RAM\r\n15 GB SSD\r\n1 IPv4 + /64 IPv6\r\n1 TB Traffic\r\nKVM based",
"addons": {
"operating system": {
"88": {
"id": 88,
"description": "Ubuntu LTS 20.04 64Bit"
},
"92": {
"id": 92,
"description": "alternative / manual installation via VNC"
}
},
"additional ram": {
"396": {
"id": 396,
"description": "+1GB"
},
"416": {
"id": 416,
"description": "no"
}
},
"additional ip": {
"8": {
"id": 8,
"description": "no additional IPs"
},
"9": {
"id": 9,
"description": "1 IP"
}
}
}
},
"KVM STARTER": {
"id": 1387,
"description": "2048 MB RAM\r\n20 GB SSD\r\n1 IPv4 + /64 IPv6\r\n2 TB Traffic\r\nKVM based",
"addons": {
"operating system": {
"208": {
"id": 208,
"description": "Debian 12 (Bookworm) 64Bit"
}
},
"additional drive boost": {
"605": {
"id": 605,
"description": "100GB"
}
}
}
},
"global products": {
"traffic pool": {
"TOP UP TRAFFIC POOL 1 TB": {
"id": 1872,
"description": "EDIS has two traffic zones: Global traffic zone EUR 6,-- per 1 TB"
}
}
}
},
"status": "success"
}