VPS.org API

REST API ডকুমেন্টেশন

ডোমেইন API

ডোমেইন নিবন্ধন, পুনর্নবীকরণ এবং কনফিগারেশন প্রোগ্রাম্যাটিকভাবে পরিচালনা করুন।

শেষবিন্দু 6 endpoints
বেস পাথ /api/v1/domains
পান /api/v1/domains/

সকল ডোমেন তালিকাভুক্ত করুন

আপনার অ্যাকাউন্টের অধীনে নিবন্ধিত সকল ডোমেইনের তালিকা প্রাপ্ত করুন।

কোয়েরি প্যারামিটার

পরামিতি আদর্শ প্রয়োজনীয় বর্ণনা
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/

নতুন ডোমেইন নিবন্ধন করুন

একটি নতুন ডোমেইন নাম নিবন্ধন করো । নিবন্ধনের আগে ডোমেইন ব্যবহারযোগ্যতা পরীক্ষা করা উচিত ।

অনুরোধ বডি প্যারামিটার

পরামিতি আদর্শ প্রয়োজনীয় বর্ণনা
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}/

ডোমেইন বিবরণ প্রাপ্ত করো

একটি নির্দিষ্ট ডোমেইন সম্পর্কে বিস্তারিত তথ্য প্রাপ্ত করো ।

পথের পরামিতি

পরামিতি আদর্শ প্রয়োজনীয় বর্ণনা
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}/

ডোমেইন সেটিংস আপডেট করো

ডোমেইন কনফিগারেশন আপডেট করুন যেমন স্বয়ংক্রিয়ভাবে নতুন করে চালু করা, নেম সার্ভার এবং গোপনীয়তা সেটিংস।

পথের পরামিতি

পরামিতি আদর্শ প্রয়োজনীয় বর্ণনা
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
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}/

ডোমেইন মুছে ফেলো

Delete a domain from your account. This does not cancel the domain registration - it only removes it from your VPS.org account management.

পথের পরামিতি

পরামিতি আদর্শ প্রয়োজনীয় বর্ণনা
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.

পথের পরামিতি

পরামিতি আদর্শ প্রয়োজনীয় বর্ণনা
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
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
স্থানান্তরের প্রয়োজনীয়তা:
  • ডোমেইন বর্তমান রেজিস্ট্রার দ্বারা আনলক করা আবশ্যক
  • ডোমেইনটি অন্তত ৬০ দিন পুরনো হতে হবে
  • বৈধ EPP/Auth কোড আবশ্যক
  • অনুমোদনের জন্য WHOIS ই-মেইল অবশ্যই প্রবেশযোগ্য হতে হবে
  • স্থানান্তরে ১ বছরের পুনর্নবীকরণ অন্তর্ভুক্ত (ফি প্রযোজ্য)

ডোমেইন মূল্য

জনপ্রিয় TLD

টিএলডি নিবন্ধন (১ বছর) পুনঃপ্রতিষ্ঠা স্থানান্তর
.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 ব্যবস্থাপনা
  • ✓ ফ্রি ই- মেইল ফরোয়ার্ডিং
  • ✓ ফ্রি ডোমেইন ফরোয়ার্ডিং
  • ✓ ফ্রি ডোমেইন লকিং
  • ✓ ২৪/৭ সমর্থন
  • ✓ সহজ ডোমেইন ব্যবস্থাপনা
  • ✓ স্বয়ংক্রিয়ভাবে নতুন করে লেখার অপশন

ডোমেইন ব্যবস্থাপনা সেরা প্র্যাকটিস

নিরাপত্তা

কনফিগারেশন

স্থানান্তর