v2

latestOpenAPI 3.0.0raw.githubusercontent.com2026-02-16143114179.4 KB
Add-Ons

List add-ons

Retrieve a paginated list of add-ons with prices.

get/api/add-ons

Query parameters

pagenumber
limitnumber

Response

Paginated list of add-ons

Example response

{
  "data": [
    {
      "id": "clx1234567890",
      "name": "Extra Storage",
      "code": "extra_storage",
      "description": "50GB additional storage",
      "invoiceDisplayName": "Storage Add-On",
      "prices": [
        {
          "id": "clx1234567890",
          "currency": "USD",
          "amount": "29.9900"
        }
      ]
    }
  ],
  "meta": {
    "total": 150,
    "page": 1,
    "limit": 20,
    "totalPages": 8
  }
}