v52

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-03269339953.6 KB
Billing: Catalog

Get catalog item list

Retrieve catalog items available for order.

Prices in catalog items is displayed as cents (without floating point), e.g: float 17.99 is displayed as integer 1799.

Use this endpoint to view available services and pricing before placing orders.

get/api/billing/v1/catalog

Query parameters

category'DOMAIN' | 'VPS' | 'EMAIL'
Example:VPS

Filter catalog items by category

namestring
Example:.COM*

Filter catalog items by name. Use * for wildcard search, e.g. .COM* to find .com domain

Response

Success response

idstring

Catalog item ID

namestring
categorystring
metadataobject nullable
        Flexible key-value storage containing category-specific metadata for the catalog item.
        The structure and available fields vary depending on the item category.
        

Example response

[
  {
    "id": "hostingercom-vps-kvm2",
    "name": "KVM 2",
    "category": "VPS",
    "metadata": {
      "field": "value"
    },
    "prices": [
      {
        "id": "hostingercom-vps-kvm2-usd-1m",
        "name": "KVM 2 (billed every month)",
        "currency": "USD",
        "price": 1799,
        "first_period_price": 899,
        "period": 1,
        "period_unit": "day"
      }
    ]
  }
]