-
Getting Started
-
Domains
- Authentication & Headers
- Get Domain Pricing
- Search Domain Availability
- List Domains
- Register Domain
- Transfer Domain
- Get Registrar Domain Info
- Change Nameservers
- Registrar Lock (Enable/Disable)
- Whois Privacy (Toggle)
- Dns Management (Get/Set)
- Get Epp/Authorization Code
- Renew Domain
- Restore Expired Domain
- Get Local Domain Details
- Register Custom Nameserver (Glue Record)
- List Contact Profiles
- Create Contact Profile
- Update Contact Profile
- Assign Contacts To Domain
-
SMM | Lab (SEO)
-
Hosted Payments
-
Crypto Payments
-
Messaging
-
WhatsApp API
-
Email API
-
IPTV
Order Status (action=status)
3. Order status – action=status
Description:
Returns order status for a single order or multiple orders.
3.1 Single order status
Parameters
key(required)action(required) =statusorder(required): API order ID returned byadd(not the internal database id).
Example request
key=YOUR_API_KEY
action=status
order=23501
Example response
{
"charge": "0.00",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
}
Status values
PendingIn progressCompletedPartialCanceled
3.2 Multiple orders status
Parameters
key(required)action(required) =statusorders(required): Comma-separated API order IDs (up to 100).
Example request
key=YOUR_API_KEY
action=status
orders=1,10,100
Example response
{
"1": {
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "USD"
},
"10": {
"error": "Incorrect order ID"
},
"100": {
"charge": "1.44219",
"start_count": "234",
"status": "In progress",
"remains": "10",
"currency": "USD"
}
}