v1

latestOpenAPI 3.0.02026-07-14198572488.4 KB
Billing

List Available Products

Provides a list of available hosting plan products. Addons are not listed and must be added manually

get/v1/billing/products

Query parameters

couponstring

Apply a coupon to the product results

product_idinteger

Filter to a specific product id

type'Managed' | 'Agency' | 'Enterprise'

Filter by product type

Response

OK

successboolean

whether the request succeeded

errorsstring[]
messagesstring[] nullable

Example response

{
  "success": true,
  "errors": [],
  "messages": [],
  "metadata": {
    "page": 1,
    "page_size": 10,
    "total": 150
  },
  "result": [
    {
      "id": 1,
      "name": "Expert",
      "description": "25 WordPress Installs\n5,000,000 Visits\n50GB Storage\n500GB Bandwidth\nFree SSL\n",
      "type": "Managed",
      "pricing": {
        "billing_cycle_options": [
          {
            "billing_cycle": "Monthly",
            "cost": 10,
            "currency": "USD",
            "next_renewal_date": "2024-01-31",
            "coupon": {
              "cost": 1,
              "type": "fixed amount",
              "discount_value": 29,
              "recurring_times": 3
            }
          }
        ]
      }
    }
  ]
}