v1

latestOpenAPI 3.0.02026-07-2248161142.3 KB

Retrieve user services

Retrieves a list of services linked to the user's account based on the provided login credentials, including details such as service status, billing cycle, pricing, and location.

post/kvm/v2/get/services

Request body

emailstring

Your WHMCS email address.

pwstring

Your WHMCS password.

Example request

{
  "email": "user@example.com",
  "pw": "securepassword123"
}

Response

Successful response

statusstring

Request status. Returns success when the request was processed correctly.

Example response

{
  "status": "success",
  "services": [
    {
      "service_id": 312845,
      "kvm_id": "kvm_114732_602381",
      "status": "active",
      "price": {
        "billingcycle": "Monthly",
        "amount": "4.99",
        "currency": "EUR"
      },
      "creation_date": "2025-03-11",
      "key_date": "2026-03-19",
      "paymentmethod": "cryptomus",
      "plan": "KVM BASIC",
      "location": "Austria, Vienna"
    }
  ]
}