Skip to main content
POST
/
kvm
/
v2
/
get
/
products
Get VPS-Plans.
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
{
  "products": {
    "KVM SMART": {
      "id": 106,
      "description": {
        "disk": {
          "size": 15,
          "unit": "GByte"
        },
        "ram": {
          "size": 1024,
          "unit": "MByte"
        },
        "cpu": {
          "size": 1,
          "unit": "core/socket"
        },
        "traffic": {
          "size": 1,
          "unit": "TByte"
        },
        "price": {
          "monthly": {
            "amount": "7.99",
            "currency": "EUR"
          },
          "quarterly": {
            "amount": "23.97",
            "currency": "EUR"
          },
          "semiannually": {
            "amount": "47.94",
            "currency": "EUR"
          },
          "annually": {
            "amount": "87.89",
            "currency": "EUR"
          }
        }
      },
      "addons": {
        "operating system": {
          "88": {
            "id": 88,
            "description": "Ubuntu LTS 20.04 64Bit"
          },
          "92": {
            "id": 92,
            "description": "alternative / manual installation via VNC"
          },
          "208": {
            "id": 208,
            "description": "Debian 12 (Bookworm) 64Bit"
          }
        },
        "additional ram": {
          "396": {
            "id": 396,
            "description": "+1GB",
            "price": {
              "monthly": {
                "amount": "5.00",
                "currency": "EUR"
              }
            }
          },
          "416": {
            "id": 416,
            "description": "no"
          }
        },
        "additional ip": {
          "8": {
            "id": 8,
            "description": "no additional IPs",
            "price": {
              "monthly": {
                "amount": "0.00",
                "currency": "EUR"
              }
            }
          },
          "9": {
            "id": 9,
            "description": "1 IP",
            "price": {
              "monthly": {
                "amount": "5.00",
                "currency": "EUR"
              }
            }
          }
        }
      }
    },
    "KVM STARTER": {
      "id": 99,
      "description": {
        "disk": {
          "size": 20,
          "unit": "GByte"
        },
        "ram": {
          "size": 2048,
          "unit": "MByte"
        },
        "cpu": {
          "size": 1,
          "unit": "core/socket"
        },
        "traffic": {
          "size": 2,
          "unit": "TByte"
        },
        "price": {
          "monthly": {
            "amount": "12.99",
            "currency": "EUR"
          },
          "quarterly": {
            "amount": "38.97",
            "currency": "EUR"
          },
          "semiannually": {
            "amount": "77.94",
            "currency": "EUR"
          },
          "annually": {
            "amount": "142.89",
            "currency": "EUR"
          }
        }
      },
      "addons": {
        "operating system": {
          "88": {
            "id": 88,
            "description": "Ubuntu LTS 20.04 64Bit"
          },
          "92": {
            "id": 92,
            "description": "alternative / manual installation via VNC"
          },
          "208": {
            "id": 208,
            "description": "Debian 12 (Bookworm) 64Bit"
          }
        },
        "additional ram": {
          "396": {
            "id": 396,
            "description": "+1GB",
            "price": {
              "monthly": {
                "amount": "5.00",
                "currency": "EUR"
              }
            }
          },
          "416": {
            "id": 416,
            "description": "no"
          }
        },
        "additional drive boost": {
          "605": {
            "id": 605,
            "description": "100GB",
            "price": {
              "monthly": {
                "amount": "29.00",
                "currency": "EUR"
              }
            }
          }
        }
      }
    }
  },
  "status": "success"
}

Body

application/x-www-form-urlencoded
email
string

Your WHMCS email address.

Example:

"yourwhmc_email"

pw
string

Your WHMCS password.

Example:

"yourwhmc_password"

location_id
string

The location ID obtained from the get locations call.

Example:

"location_id"

Response

Successfully retrieved available products and configurations.

data
boolean
Example:

false

products
object
status
string
Example:

"success"

Last modified on January 28, 2026