అన్ని డొమైన్లను జాబితా చేయి
మీ ఖాతా క్రిందనందలి అన్ని డొమైన్ల జాబితాను జరుపుము.
ప్రశ్న పారామితులు
పెరామీటరు
రకం
అవసరం
విశదీకరణము
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"
నకలు@ action
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())
నకలు@ action
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);
నకలు@ action
ఉదాహరణ ప్రతిస్పందన
{
"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
అనధికారికం - చెల్లని లేదా తప్పిపోయిన ప్రామాణీకరణ టోకెన్
కొత్త డొమైన్ను నమోదు చేయండి
కొత్త డొమైన్ పేరును రిజిష్టర్ చెయ్యండి. డొమైన్ అందుబాటులో వున్న దానిని రిజిష్టర్కు ముందు పరిశీలించాలి.
బాడీ పారామితులను అభ్యర్థించండి
పెరామీటరు
రకం
అవసరం
విశదీకరణము
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
}'
నకలు@ action
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())
నకలు@ action
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);
నకలు@ action
$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);
నకలు@ action
ఉదాహరణ ప్రతిస్పందన
{
"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"
నకలు@ action
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())
నకలు@ action
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);
నకలు@ action
ఉదాహరణ ప్రతిస్పందన
{
"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
దొరకలేదు - డొమైన్ ఉనికిలో లేదు.
డొమైన్ అమరికలను నవీకరించు
స్వయంచాలక- renewal, name servers, మరియు గోప్యత అమర్పుల వంటి డొమైన్ ఆకృతీకరణను నవీకరించుము. Name
పాత్ పారామితులు
పెరామీటరు
రకం
అవసరం
విశదీకరణము
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"
]
}'
నకలు@ action
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())
నకలు@ action
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);
నకలు@ action
ఉదాహరణ ప్రతిస్పందన
{
"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
దొరకలేదు - డొమైన్ ఉనికిలో లేదు.
డొమైన్ తొలగించు
మీ ఖాతా నుండి డొమైన్ తొలగించు. ఇది డొమైన్ రిజిష్టర్ రద్దుచేయదు - మీ VPS.org అంశపు నిర్వహణ నుండి మాత్రమే అది తొలగిస్తుంది.
పాత్ పారామితులు
పెరామీటరు
రకం
అవసరం
విశదీకరణము
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"
నకలు@ action
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)
నకలు@ action
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);
నకలు@ action
ప్రతిస్పందన స్థితి కోడ్లు
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
}'
నకలు@ action
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())
నకలు@ action
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);
నకలు@ action
ఉదాహరణ ప్రతిస్పందన
{
"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/Ath కోడ్
WHOISH అనువర్తనం గుర్తించబడాలి
బదిలీలలో 1 సంవత్సరాల పునరుద్ధరణ (అనువర్తనము) ను కలిగిఉంటుంది
డొమైన్ ప్రెక్సింగ్
ప్రజాదరణ పొందిన టెడ్స్
ఏటపు పదము(_D)Demplate
(1 సంవత్సరం)
రివిజన్Name
బదిలీకరణ
.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 గోప్యతా రక్షణ
✓ ఫ్రీ డిఎన్ఎస్ నిర్వహణName
✓ ఉచిత ఈమెయిల్ ఫార్వార్డింగ్
✓ ఖాళీ డొమైన్ ఫార్వార్డింగ్
✓ ఖాళీ డొమైన్ లాకింగ్
✓ 24/7 మద్దతు
✓ డొమైన్ నిర్వహణ
✓ దానంతటదే కొత్త ఐచ్చికం
డొమైన్ నిర్వహణ ఉత్తమ అభ్యాసాలుName
భద్రత
(m) డొమైన్ లాకింగ్ చేతనము చేయుము: అనుమానించని బదిలీకరణలను నిరోధించుము
(e) గోప్యత రక్షణను చేతనముచేయుము: WHOIS నుంచి మీ వ్యక్తిగత సమాచారాన్ని దాచివుంచుము
బలమైన సంకేతపదములను వుపయోగించుము: మీ VPS.org ఖాతాను కాపాడండి
(k) 2FA చేతనముచేయుము: మీ ఖాతాకు అదనపు భద్రతను జతచేయండి
(e) కాలముగింపు తేదీలను మానిటర్ చేయుము: జ్ఞాపికలను అప్రవేశంగా అమర్చుముName
ఆకృతీకరణ
DNS అమర్పు: సులభంగా నిర్వహించుటకు VPS.org కు పాయింట్ పేరు serverలు
దానంతటదే నవీకరించు: యాదృచ్ఛిక డొమైన్ ఎగ్జిక్యూటబుల్ ని అస్పష్టతను అచేతనము చేయుటకు చేతనము చేయుము
సంప్రదింపు సమాచారం: WHOISCON సమాచారమును తేదీవరకు వుంచుము
బ్యాక్అప్ DNS: Rhundio కోసం రెండవ DNS సిద్దీకరణను పరిశీలించుము
బదిలీకరణలు
60-రోజు లాక్: డొమైన్లు 60 రోజుల లోపల డిస్టార్షన్ లేదా మునుపటి బదిలీ ను బదిలీ చేయలేము
లాక్ డొమెయిన్: బదిలీకరణకు ముందుగా ప్రస్తుత రిజిస్ట్రేషన్ నందు అన్లాక్ చేయబడాలి
Auth కోడ్ పొందండి: ప్రస్తుత రిజిస్ట్రేషన్ నుంచి EPP/sycription కోడ్ ను అడుగు
ఈమెయిల్ చెక్: బదిలీకరణ ప్రక్రియ సమయంలో మీరు ఆమోదిత ఈమెయిల్ అందుకుంటారు
ముందుకు ప్రణాళిక: బదిలీలు పూర్తవుటకు 5-7 రోజుల పడుతుంది