ລາຍຊື່ໂດເມນທັງໝົດ
ຮັບລາຍຊື່ຂອງໂດເມນທີ່ໄດ້ລົງທະບຽນພາຍໃຕ້ບັນຊີຂອງທ່ານ
ພາລາມິເຕີການສອບຖາມ
ຕົວເລືອກ
ປະເພດ
ຕ້ອງມີການ
ຄໍາອະທິບາຍ
status
string
ບໍ່
Filter by status: active, pending, expired, locked
search
string
ບໍ່
ຄົ້ນຫາໂດເມນຕາມຊື່
ຕົວຢ່າງການຮ້ອງຂໍ
curl -X GET "https://admin.vps.org/api/v1/domains/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
ចម្លង
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())
ចម្លង
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);
ចម្លង
ຕົວຢ່າງການຕອບສະໜອງ
{
"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"
}
]
}
ລະຫັດສະຖານະການຕອບສະໜອງ
200
ດຶງຂໍ້ມູນລາຍຊື່ໂດເມນສຳເລັດແລ້ວ
401
ບໍ່ໄດ້ຮັບອະນຸຍາດ - ໂທເຄັນການພິສູດຢືນຢັນບໍ່ຖືກຕ້ອງ ຫຼື ບໍ່ມີ
ລົງທະບຽນໂດເມນໃໝ່
ລົງທະບຽນຊື່ໂດເມນໃໝ່ & # 160; ។ ຄວນກວດເບິ່ງວ່າມີໂດເມນທີ່ມີຢູ່ກ່ອນທີ່ຈະລົງທະບຽນ & # 160; ។
ຮ້ອງຂໍພາລາມິເຕີຂອງຮ່າງກາຍ
ຕົວເລືອກ
ປະເພດ
ຕ້ອງມີການ
ຄໍາອະທິບາຍ
domain_name
string
ແມ່ນແລ້ວ
Domain name to register (e.g., "example.com")
years
integer
ບໍ່
Registration period in years (1-10, default: 1)
auto_renew
boolean
ບໍ່
Enable automatic renewal (default: true)
privacy_protection
boolean
ບໍ່
Enable WHOIS privacy protection (default: true)
nameservers
array
ບໍ່
Custom nameservers (default: VPS.org nameservers)
ຕົວຢ່າງການຮ້ອງຂໍ
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
}'
ចម្លង
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())
ចម្លង
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);
ចម្លង
$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);
ចម្លង
ຕົວຢ່າງການຕອບສະໜອງ
{
"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."
}
ລະຫັດສະຖານະການຕອບສະໜອງ
201
Domain registration initiated successfully
400
Bad Request - Invalid domain name or domain already registered
401
ບໍ່ໄດ້ຮັບອະນຸຍາດ - ໂທເຄັນການພິສູດຢືນຢັນບໍ່ຖືກຕ້ອງ ຫຼື ບໍ່ມີ
402
Payment Required - Insufficient account balance
ចំណាំ: 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.
ເອົາລາຍລະອຽດຂອງໂດເມນ
ເກັບຂໍ້ມູນລະອຽດກ່ຽວກັບໂດເມນທີ່ໄດ້ກຳນົດໄວ້
ພາລາມິເຕີເສັ້ນທາງ
ຕົວເລືອກ
ປະເພດ
ຕ້ອງມີການ
ຄໍາອະທິບາຍ
domain_id
integer
ແມ່ນແລ້ວ
Unique domain ID
ຕົວຢ່າງການຮ້ອງຂໍ
curl -X GET "https://admin.vps.org/api/v1/domains/101/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
ចម្លង
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())
ចម្លង
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);
ចម្លង
ຕົວຢ່າງການຕອບສະໜອງ
{
"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
}
ລະຫັດສະຖານະການຕອບສະໜອງ
200
Successfully retrieved domain details
401
ບໍ່ໄດ້ຮັບອະນຸຍາດ - ໂທເຄັນການພິສູດຢືນຢັນບໍ່ຖືກຕ້ອງ ຫຼື ບໍ່ມີ
404
ບໍ່ພົບ - ບໍ່ມີໂດເມນ
ធ្វើឲ្យການកំណត់ໂດເມນទាន់សម័យ
ປັບແຕ່ງການຕັ້ງຄ່າໂດເມນເຊັ່ນ: ການປັບໃໝ່ອັດຕະໂນມັດ, ຊື່ເຊີບເວີ ແລະ ການຕັ້ງຄ່າຄວາມເປັນສ່ວນຕົວ.
ພາລາມິເຕີເສັ້ນທາງ
ຕົວເລືອກ
ປະເພດ
ຕ້ອງມີການ
ຄໍາອະທິບາຍ
domain_id
integer
ແມ່ນແລ້ວ
Unique domain ID
ຮ້ອງຂໍພາລາມິເຕີຂອງຮ່າງກາຍ
ຕົວເລືອກ
ປະເພດ
ຕ້ອງມີການ
ຄໍາອະທິບາຍ
auto_renew
boolean
ບໍ່
Enable or disable automatic renewal
privacy_protection
boolean
ບໍ່
Enable or disable WHOIS privacy
nameservers
array
ບໍ່
Update nameservers (2-4 nameservers required)
locked
boolean
ບໍ່
Lock or unlock domain to prevent transfers
ຕົວຢ່າງການຮ້ອງຂໍ
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"
]
}'
ចម្លង
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())
ចម្លង
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);
ចម្លង
ຕົວຢ່າງການຕອບສະໜອງ
{
"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."
}
ລະຫັດສະຖານະການຕອບສະໜອງ
200
Domain updated successfully
400
Bad Request - Invalid parameters
401
ບໍ່ໄດ້ຮັບອະນຸຍາດ - ໂທເຄັນການພິສູດຢືນຢັນບໍ່ຖືກຕ້ອງ ຫຼື ບໍ່ມີ
404
ບໍ່ພົບ - ບໍ່ມີໂດເມນ
ເອົາໂດເມນອອກ
ເອົາໂດເມນອອກຈາກບັນຊີຂອງທ່ານ & # 160; ។ ສິ່ງນີ້ຈະບໍ່ຖອນການລົງທະບຽນໂດເມນ - ມັນພຽງແຕ່ເອົາມັນອອກຈາກການຈັດການບັນຊີ VPS.org ຂອງທ່ານເທົ່ານັ້ນ & # 160; ។
ພາລາມິເຕີເສັ້ນທາງ
ຕົວເລືອກ
ປະເພດ
ຕ້ອງມີການ
ຄໍາອະທິບາຍ
domain_id
integer
ແມ່ນແລ້ວ
Unique domain ID
ຕົວຢ່າງການຮ້ອງຂໍ
curl -X DELETE "https://admin.vps.org/api/v1/domains/101/" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
ចម្លង
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)
ចម្លង
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);
ចម្លង
ລະຫັດສະຖານະການຕອບສະໜອງ
204
Domain removed from account successfully
401
ບໍ່ໄດ້ຮັບອະນຸຍາດ - ໂທເຄັນການພິສູດຢືນຢັນບໍ່ຖືກຕ້ອງ ຫຼື ບໍ່ມີ
404
ບໍ່ພົບ - ບໍ່ມີໂດເມນ
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.
ສົ່ງໂດເມນໄປ
ເລີ່ມຕົ້ນການໂອນໂດເມນໄປ VPS.org ຈາກຜູ້ລົງທະບຽນອື່ນ.
ພາລາມິເຕີເສັ້ນທາງ
ຕົວເລືອກ
ປະເພດ
ຕ້ອງມີການ
ຄໍາອະທິບາຍ
domain_id
integer
ແມ່ນແລ້ວ
Unique domain ID
ຮ້ອງຂໍພາລາມິເຕີຂອງຮ່າງກາຍ
ຕົວເລືອກ
ປະເພດ
ຕ້ອງມີການ
ຄໍາອະທິບາຍ
auth_code
string
ແມ່ນແລ້ວ
EPP/Authorization code from current registrar
auto_renew
boolean
ບໍ່
Enable auto-renewal after transfer (default: true)
ຕົວຢ່າງການຮ້ອງຂໍ
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
}'
ចម្លង
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())
ចម្លង
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);
ចម្លង
ຕົວຢ່າງການຕອບສະໜອງ
{
"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"
]
}
ລະຫັດສະຖານະການຕອບສະໜອງ
200
Transfer initiated successfully
400
Bad Request - Invalid auth code or domain not eligible for transfer
401
ບໍ່ໄດ້ຮັບອະນຸຍາດ - ໂທເຄັນການພິສູດຢືນຢັນບໍ່ຖືກຕ້ອງ ຫຼື ບໍ່ມີ
404
ບໍ່ພົບ - ບໍ່ມີໂດເມນ
402
Payment Required - Insufficient account balance for transfer fee
ຄວາມຕ້ອງການໃນການໂອນ:
ໂດເມນຕ້ອງໄດ້ເປີດກ່ອງຢູ່ທີ່ຜູ້ລົງທະບຽນປັດຈຸບັນ
ໂດເມນຕ້ອງມີອາຍຸຢ່າງໜ້ອຍ 60 ວັນ
ຕ້ອງການລະຫັດ EPP/Auth ທີ່ຖືກຕ້ອງ
ຕ້ອງສາມາດເຂົ້າເຖິງອີເມວ WHOIS ເພື່ອຮັບຮອງເອົາ
ການໂອນລວມມີ 1-ປີການດໍາເນີນງານໃຫມ່ (ຄ່າໃຊ້ຈ່າຍທີ່ນໍາໃຊ້)
ໂດເມນ
ໂດເມນຕົ້ນຕໍທີ່ນິຍົມ
ໂດເມນຂັ້ນສູງ
ລົງທະບຽນ (1 ປີ)
ປັບປຸງ
ສົ່ງຕໍ່
.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
ຄຸນສົມບັດທີ່ລວມຢູ່
✓ ການປົກປ້ອງຄວາມເປັນສ່ວນຕົວ WHOIS ຟຣີ
✓ ການຈັດການ DNS ຟຣີ
✓ ການສົ່ງຕໍ່ອີເມວຟຣີ
✓ ສົ່ງຕໍ່ໂດເມນຟຣີ
✓ ໂດເມນຟຣີ
✓ 24/7 ການບໍລິການ
✓ ການຈັດການໂດເມນງ່າຍ
✓ ຕົວເລືອກການເຮັດໃຫ້ໃໝ່ອັດຕະໂນມັດ
ການຈັດການໂດເມນ
ຄວາມປອດໄພ
ເປີດການລັອກໂດເມນ: ປ້ອງກັນການໂອນທີ່ບໍ່ໄດ້ຮັບອະນຸຍາດ
ເປີດການປົກປ້ອງຄວາມລັບ: លាក់ຂໍ້ມູນສ່ວນຕົວຂອງທ່ານຈາກ WHOIS
ໃຊ້ລະຫັດຜ່ານທີ່ແຂງ: ປົກປ້ອງບັນຊີ VPS.org ຂອງທ່ານ
ເປີດການຢັ້ງຢືນ 2FA: ເພີ່ມຄວາມປອດໄພໃຫ້ກັບບັນຊີຂອງທ່ານ
ຕິດຕາມວັນໝົດອາຍຸ: ຕັ້ງຄ່າການເຮັດໃຫ້ປື້ມບັນທຶກປິດໂດຍອັດຕະໂນມັດ
ການຕັ້ງຄ່າ
ຕັ້ງຄ່າ DNS: ສະແດງຊື່ເຊີບເວີໄປຍັງ VPS.org ເພື່ອການຈັດການງ່າຍ
ປັບປຸງອັດຕະໂນມັດ: ເປີດເພື່ອປ້ອງກັນການໝົດອາຍຸໂດເມນແບບບັງເອີນ
ຂໍ້ມູນຕິດຕໍ່: ຮັກສາຂໍ້ມູນຕິດຕໍ່ WHOIS ໃຫ້ທັນສະໄໝ
ບັນທຶກໄວ້ໃນ DNS: ພິຈາລະນາຜູ້ສະໜອງ DNS ຂັ້ນສອງເພື່ອເພີ່ມຕື່ມ
ສົ່ງຕໍ່
60 ວັນຢຸດ: ໂດເມນບໍ່ສາມາດຖືກໂອນໃນເວລາ 60 ວັນຫຼັງຈາກລົງທະບຽນ ຫຼື ໂອນກ່ອນໜ້ານີ້
ដោះសោໂດເມນ & # 160; ៖ ຕ້ອງໄດ້ເປີດກ່ອງຢູ່ທີ່ຜູ້ລົງທະບຽນປັດຈຸບັນ ກ່ອນຈະໂອນ
ຮັບລະຫັດການອະນຸຍາດ: ຂໍລະຫັດ EPP/ການອະນຸຍາດຈາກຜູ້ລົງທະບຽນປັດຈຸບັນ
ກວດເບິ່ງອີເມວ: ທ່ານຈະໄດ້ຮັບອີເມວການຍອມຮັບໃນລະຫວ່າງການໂອນ
ວາງແຜນລ່ວງໜ້າ: ການໂອນສາມາດໃຊ້ເວລາ 5-7 ວັນເພື່ອສໍາເລັດ