Product Launch

Introducing Clytrix White-Label Domain Reseller Program

Clytrix Domain Reseller Program

We are thrilled to announce the official launch of the Clytrix Domain Reseller Program. Specifically engineered for agencies, web developers, hosting providers, and digital entrepreneurs, this platform allows you to resell 500+ Top Level Domains (TLDs) under your own brand with zero setup fees and no advance deposits.

The domain registration industry has traditionally put high entry barriers in front of resellers, requiring massive deposits or setup fees to unlock competitive pricing. Clytrix is breaking this pattern by providing wholesale pricing and a state-of-the-art white-label portal to everyone from day one.

Key Features of the Reseller Program

Our reseller infrastructure has been built from the ground up to offer maximum automation, reliability, and profitability. Here are the core highlights:

1. Fully White-Labeled Portal & API

Your clients will never see the Clytrix name. The customer portal, domain search widgets, WHOIS queries, and billing transactions are fully branded with your logo, colors, and legal details. If you use a custom client panel, our live JSON API enables you to query WHOIS registry databases and provision domains in real-time under your own brand.

2. Zero Deposits & Tiered Wholesale Pricing

Unlike other registrars that require $100+ deposits to activate account tiers, Clytrix lets you explore prices and register domains instantly. You pay only for the domains you buy. As your volume grows, you will automatically advance through our discount tiers:

  • Bronze Tier (0-49 domains): Retail pricing.
  • Silver Tier (50-249 domains): Save 2% on registrations and renewals.
  • Gold Tier (250-999 domains): Save 5% on all TLD actions.
  • Platinum Tier (1000+ domains): Save 10% on wholesale domain costs.

3. Native WHMCS Integration

If you run your hosting business on WHMCS, our custom Clytrix Domain Reseller module integrates in minutes. Once installed, it automates EPP transfer codes, WHOIS contact updates, DNS record modifications, and domain renewals directly from your client area. You can download the WHMCS module from your reseller dashboard for free.

Tech Tip: The Clytrix API has a robust rate limit of 60 requests per minute, which is more than enough to handle bulk registrations during high-volume promotions or flash sales.

WHMCS Module Setup Guide

For resellers using WHMCS, setting up white-label domain automation is easy. Simply follow these steps:

  1. Download & Extract: Download the Clytrix WHMCS Module zip archive directly from our official Domain Reseller WHMCS GitHub Repository, and extract its contents to your local machine.
  2. Upload Module: Upload the module folder to your WHMCS installation directory: /modules/registrars/clytrix/.
  3. Configure Registrar: Log into your WHMCS Admin Area, navigate to Setup > Products/Services > Domain Registrars, locate the Clytrix registrar in the list, and click Activate.
  4. Insert API Credentials: Enter your white-label API Key (obtained from your Clytrix Reseller Panel) and click Save.
  5. Map TLD Pricing: Go to Domain Pricing, map your desired TLD extensions (such as .com, .net, .org), choose Clytrix as the registrar, and set your custom retail pricing.

Developer REST API Reference

If you use a custom portal or billing system, you can connect directly to our high-performance REST API. This API is completely white-labeled and handles queries instantly.

API Origin Endpoint
https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php

Authentication Options

You can authenticate your API requests using one of two methods:

  1. HTTP Custom Header (Recommended): Pass your API key in the request header:
    X-Api-Key: YOUR_API_KEY
  2. POST/GET Parameter: Pass your API key as a request parameter:
    api_key=YOUR_API_KEY

Interactive API Methods & cURL Examples

Retrieve the current prepaid credit balance associated with your reseller account group.

Example cURL Command:
curl -X POST https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d "action=GetCredits"

List all TLD extensions currently enabled for your reseller account group alongside their wholesale registration, transfer, and renewal pricing.

Example cURL Command:
curl -X POST https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d "action=GetTlds"

Check if a specific domain name is available for registration in real-time registry databases.

Parameter Type Description Example
domain String The full domain name to query. example.com
Example cURL Command:
curl -X POST https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d "action=CheckDomain&domain=example.com"

Retrieve specific registration, transfer, and renewal pricing details for a given TLD extension.

Parameter Type Description Example
extension String The TLD extension name (without the dot). com
Example cURL Command:
curl -X POST https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d "action=GetDomainPricing&extension=com"

Register a brand new domain name. Credits will be automatically deducted from your prepaid balance.

Parameter Type Description Example
domain String The domain name to register. example.com
regperiod Integer Registration period in years. 1
nameserver1 String Primary DNS nameserver host. ns1.example.com
nameserver2 String Secondary DNS nameserver host. ns2.example.com
Example cURL Command:
curl -X POST https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d "action=RegisterDomain&domain=example.com&regperiod=1&nameserver1=ns1.example.com&nameserver2=ns2.example.com"

Initiate a domain transfer request from another registrar to your reseller registry network.

Parameter Type Description Example
domain String The domain name to transfer. example.com
regperiod Integer Additional registration years to add. 1
authcode String The EPP/Auth authorization code. EPP-AUTH
Example cURL Command:
curl -X POST https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d "action=TransferDomain&domain=example.com&regperiod=1&authcode=EPP-AUTH"

Extend the registration lifespan of an active domain name.

Parameter Type Description Example
domain String The domain name to renew. example.com
regperiod Integer Number of years to renew for. 1
Example cURL Command:
curl -X POST https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d "action=RenewDomain&domain=example.com&regperiod=1"

Retrieve structural details, active statuses, nameserver configurations, and expiration timestamps for a registered domain.

Parameter Type Description Example
domain String The domain name to inspect. example.com
Example cURL Command:
curl -X POST https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d "action=GetDomainInfo&domain=example.com"

Retrieve a full index list of all active domain names currently registered under your reseller credentials.

Example cURL Command:
curl -X POST https://sp.clytrix.com/modules/addons/DomainsReseller/api/index.php \
  -H "X-Api-Key: YOUR_API_KEY" \
  -d "action=ListDomains"

Compliance and Advanced Policies

To maintain network safety and comply with international regulations, resellers must adhere to standard policies:

  • ICANN and Registry Compliance: All registrations must contain accurate registrant contact information. Falsifying WHOIS data will lead to automatic domain suspension.
  • End-User Support: Resellers are the primary contact point for their end-users. Clytrix operates anonymously in the background; we will not support or interact with your clients directly.
  • Abuse Policy: Resellers must ensure their domains are not used for spam, phishing, malware hosting, or copyright infringement. We hold resellers directly liable for violations originating from accounts under their control.

How to Get Started

Getting started is free and takes less than 60 seconds. Simply visit our Domain Reseller Program page, click "Join Free", and fill out your reseller profile. Your white-label API keys and WHMCS modules will be instantly generated in your Client Area.

Prashant Panda
Written by Prashant Panda
Product Director at Clytrix

Prashant leads product roadmap planning and developer integrations at Clytrix Web Services. He is dedicated to creating accessible, white-labeled digital infrastructure for agencies worldwide.

Comments (0)
No comments yet. Be the first to share your thoughts!