Get your first service up and running in just a few minutes.
Note: This guide assumes you have already created an account. If not, sign up here.
// Example registration request
POST /api/user/auth/register
Content-Type: application/json
{
"email": "[email protected]"
}
// Response
{
"success": true,
"data": {
"userId": "uuid",
"customerId": "KH-XXXXXX",
"message": "Please check your email to verify"
}
}Navigate to the pricing page and select the service that fits your needs:
Perfect for small websites and blogs
Full control with dedicated resources
Select your preferred configuration:
// Example configuration
{
"serviceType": "SharedHosting",
"tierName": "Premium",
"billingDurationMonths": 12,
"domainName": "mywebsite.com",
"controlPanel": "cPanel"
}We offer multiple payment options:
Use your prepaid balance
Pay with MTN MoMo
Pay with Orange Money
// Payment request example
POST /api/orders/{orderId}/pay
Content-Type: application/json
{
"paymentMethod": "mtn",
"amount": 60000,
"phone": "+237612345678",
"provider": "mtn"
}
// Response
{
"success": true,
"data": {
"status": "pending",
"ussdMessage": "Please confirm on your phone"
}
}Once payment is confirmed (typically within 2-5 minutes):
Success! 🎉 Your service is now ready to use. Check your email for login details.