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
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"
}
]
}
]