VPS.org API

REST API दस्तऐवजीकरण

क्षेत्र API

डोमेन नोंदणी, नूतनीकरण आणि कॉन्फिगरेशन प्रोग्रामॅटिकली व्यवस्थापित करा.

शेवटचे बिंदू 6 endpoints
बेस पाथ /api/v1/domains
मिळवा /api/v1/domains/

सर्व डोमेनची यादी करा

तुमच्या खात्या अंतर्गत नोंदणीकृत सर्व क्षेत्रांची यादी प्राप्त करा.

क्वेरी पॅरामीटर्स

परिमाण प्रकार आवश्यक वर्णन@ title: window
status string नाही Filter by status: active, pending, expired, locked
search string नाही नावाने डोमेन शोधा

उदाहरण विनंती

cURL
Python
JavaScript
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 अनधिकृत - अवैध किंवा गहाळ प्रमाणीकरण टोकन
पोस्ट /api/v1/domains/

नवीन डोमेन नोंदणी करा

नविन क्षेत्र नाव नोंदणी करा. नोंदणी करण्यापूर्वी क्षेत्र उपलब्धता तपासा.

बॉडी पॅरामीटर्सची विनंती करा

परिमाण प्रकार आवश्यक वर्णन@ title: window
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.
मिळवा /api/v1/domains/{domain_id}/

क्षेत्र माहिती प्राप्त करा

विशिष्ट क्षेत्राविषयी विस्तृत माहिती प्राप्त करा.

पथ पॅरामीटर्स

परिमाण प्रकार आवश्यक वर्णन@ title: window
domain_id integer होय Unique domain ID

उदाहरण विनंती

cURL
Python
JavaScript
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 सापडले नाही - डोमेन अस्तित्वात नाही.
ठेवा /api/v1/domains/{domain_id}/

क्षेत्र संयोजना अद्ययावत करा

याचे मुख्य कार्य म्हणजे वृत्तपत्रे, नियतकालिक, मासिक, आणि इतर प्रकाशनांचे प्रकाशन करणे.

पथ पॅरामीटर्स

परिमाण प्रकार आवश्यक वर्णन@ title: window
domain_id integer होय Unique domain ID

बॉडी पॅरामीटर्सची विनंती करा

परिमाण प्रकार आवश्यक वर्णन@ title: window
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
Python
JavaScript
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 सापडले नाही - डोमेन अस्तित्वात नाही.
हटवा /api/v1/domains/{domain_id}/

क्षेत्र नष्ट करा

तुमच्या खात्यापासून क्षेत्र काढूण टाका. यामुळे क्षेत्र नोंदणी रद्द होत नाही - फक्त VPS.org खाते व्यवस्थापन पासून ते काढून टाकले जाते.

पथ पॅरामीटर्स

परिमाण प्रकार आवश्यक वर्णन@ title: window
domain_id integer होय Unique domain ID

उदाहरण विनंती

cURL
Python
JavaScript
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.
पोस्ट /api/v1/domains/{domain_id}/transfer/

क्षेत्र स्थानांतरीत करा

Initiate a domain transfer to VPS.org from another registrar.

पथ पॅरामीटर्स

परिमाण प्रकार आवश्यक वर्णन@ title: window
domain_id integer होय Unique domain ID

बॉडी पॅरामीटर्सची विनंती करा

परिमाण प्रकार आवश्यक वर्णन@ title: window
auth_code string होय EPP/Authorization code from current registrar
auto_renew boolean नाही Enable auto-renewal after transfer (default: true)

उदाहरण विनंती

cURL
Python
JavaScript
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 वर्षाचा नवीकरणाचा समावेश आहे (शुल्क लागू होते)

डोमेन किंमत

लोकप्रिय TLDs

TLD नोंदणी (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 व्यवस्थापनName
  • ✓ मोफत ईमेल पाठविणे
  • ✓ मुक्त डोमेन पुढे पाठवणे
  • ✓ मुक्त डोमेन कुलूपबंद
  • ✓ 24/7 समर्थन
  • ✓ क्षेत्र व्यवस्थापनName
  • ✓ स्वयं-पुनरावलोकन पर्याय

क्षेत्र व्यवस्थापन सर्वोत्तम प्रथा

सुरक्षा

संयोजना

स्थानांतरण