Vue d’ensemble

Le catalogue liste tous les plans actifs de KennHosting, regroupés par catégorie. C’est la source de vérité pour les slugs à utiliser lors de la provision. Scope requis : reseller:catalog

Lister le catalogue

GET /api/v1/reseller/catalog
Réponse :
{
  "success": true,
  "data": {
    "essential": [
      {
        "id": 1,
        "slug": "starter",
        "name": "STARTER",
        "category": "essential",
        "price": "25000.00",
        "reseller_price": null,
        "billing_period": "annual",
        "description": "...",
        "features": { ... }
      }
    ],
    "vps": [
      {
        "id": 9,
        "slug": "vps-start",
        "name": "VPS START",
        "category": "vps",
        "price": "45000.00",
        "reseller_price": null,
        "billing_period": "annual"
      }
    ],
    "email": [
      {
        "id": 19,
        "slug": "email-solo",
        "name": "Email Solo",
        "category": "email",
        "price": "12000.00",
        "reseller_price": null,
        "billing_period": "annual",
        "features": {
          "max_mailboxes": 1,
          "quota_mb": 15360
        }
      }
    ]
  }
}
reseller_price est le prix de gros que KennHosting vous facture (débité de votre wallet). Si null, le prix normal price s’applique. Vous fixez librement le prix que vous facturez à vos clients.

Détail d’un plan

GET /api/v1/reseller/catalog/{slug}
curl "https://kennhosting.com/api/v1/reseller/catalog/vps-start" \
  -H "Authorization: Bearer kh_live_YOUR_TOKEN" \
  -H "Accept: application/json"
Réponse :
{
  "success": true,
  "data": {
    "id": 9,
    "slug": "vps-start",
    "name": "VPS START",
    "category": "vps",
    "price": "45000.00",
    "reseller_price": null,
    "billing_period": "annual"
  }
}

Catégories disponibles

CatégoriePlans inclus
essentialHébergement web partagé (STARTER, PRO…)
advancedHébergement avancé (START, PRO, SCALE)
resellerPlans revendeur WHM (NANO, STARTER…)
vpsVPS cloud (vps-start, vps-pro, vps-scale)
emailEmail Pro (email-solo, email-pro-plan, email-business)
domainEnregistrement de domaines

Slugs courants

ServiceSlug
Hébergement Starterstarter
Hébergement Propro
VPS Startvps-start
VPS Provps-pro
VPS Scalevps-scale
Email Solo (1 boîte)email-solo
Email Pro (5 boîtes)email-pro-plan
Email Business (illimité)email-business