Depụta ngalaba niile
Weghachi ndesịta nke ndoimi niile e debanyere n'okpuru akaụntụ gị.
Paịmatị Ajụjụ
Paramita
Ụdị
A chọrọ
Ndesịta ozi ndị ahụ
status
string
Ọ bụghị
Filter by status: active, pending, expired, locked
search
string
Ọ bụghị
Chọọ ngalaba site na aha
Arịrịọ Ihe Nlereanya
curl -X GET "https://admin.vps.org/api/v1/domains/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
Debata
import requests
url = "https://admin.vps.org/api/v1/domains/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
Debata
const response = await fetch('https://admin.vps.org/api/v1/domains/', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
});
const domains = await response.json();
console.log(domains);
Debata
Ihe Nlereanya Azịza
{
"count": 3,
"results": [
{
"id": 101,
"domain_name": "example.com",
"status": "active",
"registration_date": "2023-01-15T10:30:00Z",
"expiration_date": "2026-01-15T10:30:00Z",
"auto_renew": true,
"locked": true,
"nameservers": [
"ns1.vps.org",
"ns2.vps.org"
],
"privacy_protection": true,
"dns_managed_by": "vps.org"
},
{
"id": 102,
"domain_name": "myapp.io",
"status": "active",
"registration_date": "2024-06-20T14:15:00Z",
"expiration_date": "2025-06-20T14:15:00Z",
"auto_renew": false,
"locked": false,
"nameservers": [
"ns1.cloudflare.com",
"ns2.cloudflare.com"
],
"privacy_protection": false,
"dns_managed_by": "external"
}
]
}
Koodu Ọnọdụ Nzaghachi
200
Enwetara ndepụta ngalaba nke ọma
401
Enweghị ikike - Akara njirimara na-ezighi ezi ma ọ bụ na-efu
Debanye aha ngalaba ọhụrụ
Ndenye aha dòmịni ọfụụ. A ga-enyocha ikike nke dómịni tupú ndenye.
Rịọ maka paramita ahụ
Paramita
Ụdị
A chọrọ
Ndesịta ozi ndị ahụ
domain_name
string
Ee
Domain name to register (e.g., "example.com")
years
integer
Ọ bụghị
Registration period in years (1-10, default: 1)
auto_renew
boolean
Ọ bụghị
Enable automatic renewal (default: true)
privacy_protection
boolean
Ọ bụghị
Enable WHOIS privacy protection (default: true)
nameservers
array
Ọ bụghị
Custom nameservers (default: VPS.org nameservers)
Arịrịọ Ihe Nlereanya
cURL
Python
JavaScript
PHP
curl -X POST "https://admin.vps.org/api/v1/domains/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"domain_name": "mynewdomain.com",
"years": 2,
"auto_renew": true,
"privacy_protection": true
}'
Debata
import requests
url = "https://admin.vps.org/api/v1/domains/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
data = {
"domain_name": "mynewdomain.com",
"years": 2,
"auto_renew": True,
"privacy_protection": True
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
Debata
const response = await fetch('https://admin.vps.org/api/v1/domains/', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
domain_name: 'mynewdomain.com',
years: 2,
auto_renew: true,
privacy_protection: true
})
});
const domain = await response.json();
console.log(domain);
Debata
$data = [
'domain_name' => 'mynewdomain.com',
'years' => 2,
'auto_renew' => true,
'privacy_protection' => true
];
$ch = curl_init('https://admin.vps.org/api/v1/domains/');
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Bearer YOUR_API_TOKEN',
'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$domain = json_decode($response, true);
curl_close($ch);
Debata
Ihe Nlereanya Azịza
{
"id": 103,
"domain_name": "mynewdomain.com",
"status": "pending",
"registration_date": "2026-01-16T16:00:00Z",
"expiration_date": "2028-01-16T16:00:00Z",
"auto_renew": true,
"locked": true,
"nameservers": [
"ns1.vps.org",
"ns2.vps.org"
],
"privacy_protection": true,
"dns_managed_by": "vps.org",
"total_cost": 24.98,
"message": "Domain registration initiated. Processing may take 5-10 minutes."
}
Koodu Ọnọdụ Nzaghachi
201
Domain registration initiated successfully
400
Bad Request - Invalid domain name or domain already registered
401
Enweghị ikike - Akara njirimara na-ezighi ezi ma ọ bụ na-efu
402
Payment Required - Insufficient account balance
Ndesịta ozi: Domain registration is not instant. Status will change from pending to active within 5-10 minutes. You'll receive an email confirmation when registration completes.
Nkọwapụta _Domain
Weghachi nkọwa gbasara doomeinụ emeredịkachọrọ.
Usoro Ụzọ
Paramita
Ụdị
A chọrọ
Ndesịta ozi ndị ahụ
domain_id
integer
Ee
Unique domain ID
Arịrịọ Ihe Nlereanya
curl -X GET "https://admin.vps.org/api/v1/domains/101/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
Debata
import requests
domain_id = 101
url = f"https://admin.vps.org/api/v1/domains/{domain_id}/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())
Debata
const domainId = 101;
const response = await fetch(`https://admin.vps.org/api/v1/domains/${domainId}/`, {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
});
const domain = await response.json();
console.log(domain);
Debata
Ihe Nlereanya Azịza
{
"id": 101,
"domain_name": "example.com",
"status": "active",
"registration_date": "2023-01-15T10:30:00Z",
"expiration_date": "2026-01-15T10:30:00Z",
"auto_renew": true,
"locked": true,
"nameservers": [
"ns1.vps.org",
"ns2.vps.org"
],
"privacy_protection": true,
"dns_managed_by": "vps.org",
"registrar": "VPS.org",
"days_until_expiration": 730,
"whois_info": {
"registrant": "Privacy Protected",
"admin_contact": "Privacy Protected",
"tech_contact": "Privacy Protected",
"created_date": "2023-01-15",
"updated_date": "2025-12-20"
},
"dns_records_count": 12
}
Koodu Ọnọdụ Nzaghachi
200
Successfully retrieved domain details
401
Enweghị ikike - Akara njirimara na-ezighi ezi ma ọ bụ na-efu
404
Achọtaghị - Ngalaba adịghị adị
Nhazi
Nhazi nhazi dòmịn dịka ọbụna-nhazigharị, sava aha, na nhazi nkeonwe.
Usoro Ụzọ
Paramita
Ụdị
A chọrọ
Ndesịta ozi ndị ahụ
domain_id
integer
Ee
Unique domain ID
Rịọ maka paramita ahụ
Paramita
Ụdị
A chọrọ
Ndesịta ozi ndị ahụ
auto_renew
boolean
Ọ bụghị
Enable or disable automatic renewal
privacy_protection
boolean
Ọ bụghị
Enable or disable WHOIS privacy
nameservers
array
Ọ bụghị
Update nameservers (2-4 nameservers required)
locked
boolean
Ọ bụghị
Lock or unlock domain to prevent transfers
Arịrịọ Ihe Nlereanya
curl -X PUT "https://admin.vps.org/api/v1/domains/101/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"auto_renew": false,
"nameservers": [
"ns1.cloudflare.com",
"ns2.cloudflare.com"
]
}'
Debata
import requests
domain_id = 101
url = f"https://admin.vps.org/api/v1/domains/{domain_id}/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
data = {
"auto_renew": False,
"nameservers": [
"ns1.cloudflare.com",
"ns2.cloudflare.com"
]
}
response = requests.put(url, headers=headers, json=data)
print(response.json())
Debata
const domainId = 101;
const response = await fetch(`https://admin.vps.org/api/v1/domains/${domainId}/`, {
method: 'PUT',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
auto_renew: false,
nameservers: [
'ns1.cloudflare.com',
'ns2.cloudflare.com'
]
})
});
const domain = await response.json();
console.log(domain);
Debata
Ihe Nlereanya Azịza
{
"id": 101,
"domain_name": "example.com",
"status": "active",
"auto_renew": false,
"nameservers": [
"ns1.cloudflare.com",
"ns2.cloudflare.com"
],
"privacy_protection": true,
"locked": true,
"message": "Domain settings updated successfully. Nameserver changes may take up to 24 hours to propagate."
}
Koodu Ọnọdụ Nzaghachi
200
Domain updated successfully
400
Bad Request - Invalid parameters
401
Enweghị ikike - Akara njirimara na-ezighi ezi ma ọ bụ na-efu
404
Achọtaghị - Ngalaba adịghị adị
Hichaa _Domain
Hichaa doomeinụ site na akaụntụ gị. Nke a anaghị ewepụ ndoumene ndebanye - ọ na-ewepụ ya site na njikwa akaụntụ VPS.org gị.
Usoro Ụzọ
Paramita
Ụdị
A chọrọ
Ndesịta ozi ndị ahụ
domain_id
integer
Ee
Unique domain ID
Arịrịọ Ihe Nlereanya
curl -X DELETE "https://admin.vps.org/api/v1/domains/101/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
Debata
import requests
domain_id = 101
url = f"https://admin.vps.org/api/v1/domains/{domain_id}/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
response = requests.delete(url, headers=headers)
print(response.status_code)
Debata
const domainId = 101;
const response = await fetch(`https://admin.vps.org/api/v1/domains/${domainId}/`, {
method: 'DELETE',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
}
});
console.log(response.status);
Debata
Koodu Ọnọdụ Nzaghachi
204
Domain removed from account successfully
401
Enweghị ikike - Akara njirimara na-ezighi ezi ma ọ bụ na-efu
404
Achọtaghị - Ngalaba adịghị adị
Important: Deleting a domain from your VPS.org account does NOT cancel the registration. The domain will continue to be registered and will auto-renew if enabled. To cancel a domain registration, disable auto-renewal and let it expire.
Kpụga _Domain
Bidogharịa ndozi domeenụ̀ gaa VPS.org site n'otu rịjéètà ọzọ.
Usoro Ụzọ
Paramita
Ụdị
A chọrọ
Ndesịta ozi ndị ahụ
domain_id
integer
Ee
Unique domain ID
Rịọ maka paramita ahụ
Paramita
Ụdị
A chọrọ
Ndesịta ozi ndị ahụ
auth_code
string
Ee
EPP/Authorization code from current registrar
auto_renew
boolean
Ọ bụghị
Enable auto-renewal after transfer (default: true)
Arịrịọ Ihe Nlereanya
curl -X POST "https://admin.vps.org/api/v1/domains/101/transfer/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"auth_code": "Xy9Kl2Mn#4pQ",
"auto_renew": true
}'
Debata
import requests
domain_id = 101
url = f"https://admin.vps.org/api/v1/domains/{domain_id}/transfer/"
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Content-Type": "application/json"
}
data = {
"auth_code": "Xy9Kl2Mn#4pQ",
"auto_renew": True
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
Debata
const domainId = 101;
const response = await fetch(`https://admin.vps.org/api/v1/domains/${domainId}/transfer/`, {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Content-Type': 'application/json'
},
body: JSON.stringify({
auth_code: 'Xy9Kl2Mn#4pQ',
auto_renew: true
})
});
const transfer = await response.json();
console.log(transfer);
Debata
Ihe Nlereanya Azịza
{
"id": 101,
"domain_name": "example.com",
"transfer_status": "pending",
"transfer_initiated_at": "2026-01-16T16:30:00Z",
"estimated_completion": "2026-01-23T16:30:00Z",
"message": "Domain transfer initiated. You should receive a confirmation email from your current registrar. Transfer typically completes within 5-7 days.",
"next_steps": [
"Check email for transfer authorization request",
"Approve transfer with current registrar",
"Wait for transfer to complete (5-7 days)",
"Domain will be automatically renewed for 1 year upon completion"
]
}
Koodu Ọnọdụ Nzaghachi
200
Transfer initiated successfully
400
Bad Request - Invalid auth code or domain not eligible for transfer
401
Enweghị ikike - Akara njirimara na-ezighi ezi ma ọ bụ na-efu
404
Achọtaghị - Ngalaba adịghị adị
402
Payment Required - Insufficient account balance for transfer fee
Nhazi:
A ga-emechi ndozi na registrar ọfụụ
Domain ga-abụ na ọbụla ụbọchị 60 ochie
EPP/Auth koodu dị mma achọrọ
Imemeli WHOIS ga-adị n'ọrụ maka nkwenye
Ntụgharị na-agụnye 1-afọ ngbanwe (akwụ ụgwọ na-abịa)
Nhazi
TLDs ndị ama ama
TLD
Ndebanye (afọ 1)
Ńkwádò
Ntụgharị
.com
$12.99
$12.99
$12.99
.net
$14.99
$14.99
$14.99
.org
$13.99
$13.99
$13.99
.io
$39.99
$39.99
$39.99
.dev
$14.99
$14.99
$14.99
.app
$14.99
$14.99
$14.99
.co
$24.99
$24.99
$24.99
Atụmatụ ndị dị na ya
✓ Nchedo nkeonwe WHOIS
✓ Nlekọta DNS
✓ Nhazi ozi-e
✓ Nhazi
✓ Ńkwádò́mị̀n
✓ Nnyemaka 24/7
✓ Nhazi
✓ Nhazi nkeonwe
Nhazi ndozi
Nchedo
Mepee ndozi ndozi: Na-egbochi ntụgharị ndị a na-enweghị ikike
Mepee nchebe nkeonwe: Na-ekpuchi ozi onwe gị site na WHOIS
Jiri okwumbanye siri ike: Chekwaa akaụntụ VPS.org gị
Mepee 2FA: Tinye nchekwa ọzọ n'akaụntụ gị
Nlekọta ụbọchị oge eruola: Hazie n'onwe gị-ngbanwe ma ọ bụ kalenda n'eziga ozi
Nhazi
Nhazi DNS: Nhọrọ Nameservers na VPS.org maka nlekọta dị mfe
Ńkwádó ọ̀fụụ: Mepee ka ịkwụsị oge opupu ihe ubi nke dòmịn ahụ
Ozi gbasara onyeọbịa: Kwụsị ozi onyeọbịa WHOIS
Nchekwa DNS: Nwere ike ịtụle sekọndrị DNS onye na-enye maka n'ozuzu
Ntụgharị
60-ụbọchị nkwụsị: Agaghị agbanwenwu doomeins n'ime ụbọchị 60 nke ndebanye ma ọ bụ gbanwere nke gara aga
Wepụ ndozi A ga-emechi ya na rị́ègìstà ọfụụ tupú ịgbanwe
Nweta ụkpụrụ ikike: Ziga EPP/ọnye ikike kọ́ọ̀dị site na rị́ègìstà ọfụụ
_Nkebipụta ozi-e: Ị ga-enweta ozi oziaka nkwenye mgbe usoro iheomume ntụgharị ahụ na-aga
Nhazi n'ihu: Ntụgharị nwere ike ịtụ 5-7 ụbọchị iji gwụchaa