VPS.org API

REST API ලේඛන

සැලසුම් API

ලබා ගත හැකි VPS සැලසුම්, මිලකරණය සහ සම්පත් පිරිවිතර පිළිබඳ තොරතුරු ලබා ගන්න.

අන්ත ලක්ෂ්‍ය 2 endpoints
පාදක මාර්ගය /api/v1/plans
ලබා ගන්න /api/v1/plans/

සියලු සැලසුම් ලැයිස්තුගත කරන්න

මිලදී ගැනීම සහ සම්පත් පිරිවිතර සමඟ සියලුම VPS සැලසුම් ලැයිස්තුවක් ලබා ගන්න.

විමසුම් පරාමිතීන්

පරාමිතීන් වර්ගය අවශ්‍යයි විස්තරය
location string නෑ Filter plans by datacenter location

උදාහරණ ඉල්ලීම

cURL
Python
JavaScript
PHP
curl -X GET "https://admin.vps.org/api/v1/plans/" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"
import requests

url = "https://admin.vps.org/api/v1/plans/"
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/plans/', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_TOKEN',
    'Content-Type': 'application/json'
  }
});

const plans = await response.json();
console.log(plans);
$ch = curl_init('https://admin.vps.org/api/v1/plans/');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Authorization: Bearer YOUR_API_TOKEN',
    'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);
$plans = json_decode($response, true);
curl_close($ch);

උදාහරණ ප්‍රතිචාරය

{
  "count": 4,
  "results": [
    {
      "id": 1,
      "name": "Starter VPS",
      "slug": "starter",
      "vcpus": 1,
      "memory": 2048,
      "storage": 40,
      "bandwidth": 1024,
      "price_monthly": 5.00,
      "price_hourly": 0.007,
      "available": true,
      "locations": ["us-west", "us-east", "eu-central"],
      "description": "Perfect for small projects and testing"
    },
    {
      "id": 2,
      "name": "Standard VPS",
      "slug": "standard",
      "vcpus": 2,
      "memory": 4096,
      "storage": 80,
      "bandwidth": 2048,
      "price_monthly": 10.00,
      "price_hourly": 0.015,
      "available": true,
      "locations": ["us-west", "us-east", "eu-central", "asia-pacific"],
      "description": "Ideal for web applications and small databases"
    },
    {
      "id": 3,
      "name": "Performance VPS",
      "slug": "performance",
      "vcpus": 4,
      "memory": 8192,
      "storage": 160,
      "bandwidth": 4096,
      "price_monthly": 20.00,
      "price_hourly": 0.030,
      "available": true,
      "locations": ["us-west", "us-east", "eu-central", "asia-pacific"],
      "description": "High-performance for demanding applications"
    },
    {
      "id": 4,
      "name": "Enterprise VPS",
      "slug": "enterprise",
      "vcpus": 8,
      "memory": 16384,
      "storage": 320,
      "bandwidth": 8192,
      "price_monthly": 40.00,
      "price_hourly": 0.060,
      "available": true,
      "locations": ["us-west", "us-east", "eu-central", "asia-pacific"],
      "description": "Enterprise-grade resources for mission-critical workloads"
    }
  ]
}

ප්‍රතිචාර ක්ෂේත්‍ර

ක්ෂේත්‍රය වර්ගය විස්තරය
id integer අනන්‍ය සැලසුම් හඳුනාගැනීම
name string මිනිසුන්ට කියවිය හැකි සැලැස්මේ නම
slug string URL-හිතකාමී සැලසුම් හඳුනාගැනීමක්
vcpus integer Number of virtual CPU cores
memory integer RAM in megabytes (MB)
storage integer Disk space in gigabytes (GB)
bandwidth integer Monthly data transfer in gigabytes (GB)
price_monthly decimal Monthly subscription price in USD
price_hourly decimal Hourly billing rate in USD
available boolean Whether plan is currently available for purchase
locations array List of datacenter locations where plan is available
description string Brief description of plan use case

ප්‍රතිචාර තත්ව කේත

200 සැලසුම් ලැයිස්තුව සාර්ථකව ලබා ගන්නා ලදී.
401 අනවසර - වලංගු නොවන හෝ නැතිවූ සත්‍යාපන ටෝකනය
ලබා ගන්න /api/v1/plans/{plan_id}/

සැලසුම් විස්තර ලබා ගන්න

විශේෂිත VPS සැලැස්ම ගැන සවිස්තරාත්මක තොරතුරු ලබා ගන්න.

මාර්ග පරාමිතීන්

පරාමිතීන් වර්ගය අවශ්‍යයි විස්තරය
plan_id integer ඔව් අනන්‍ය සැලසුම් හැඳුනුම්පත

උදාහරණ ඉල්ලීම

cURL
Python
JavaScript
curl -X GET "https://admin.vps.org/api/v1/plans/2/" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"
import requests

plan_id = 2
url = f"https://admin.vps.org/api/v1/plans/{plan_id}/"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
print(response.json())
const planId = 2;
const response = await fetch(`https://admin.vps.org/api/v1/plans/${planId}/`, {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_TOKEN',
    'Content-Type': 'application/json'
  }
});

const plan = await response.json();
console.log(plan);

උදාහරණ ප්‍රතිචාරය

{
  "id": 2,
  "name": "Standard VPS",
  "slug": "standard",
  "vcpus": 2,
  "memory": 4096,
  "storage": 80,
  "bandwidth": 2048,
  "price_monthly": 10.00,
  "price_hourly": 0.015,
  "available": true,
  "locations": ["us-west", "us-east", "eu-central", "asia-pacific"],
  "description": "Ideal for web applications and small databases",
  "features": [
    "SSD Storage",
    "99.9% Uptime SLA",
    "Free Backups",
    "24/7 Support",
    "DDoS Protection",
    "IPv6 Support"
  ],
  "recommended_for": [
    "WordPress sites with moderate traffic",
    "Small to medium web applications",
    "Development and testing environments",
    "Personal projects and portfolios"
  ]
}

ප්‍රතිචාර තත්ව කේත

200 Successfully retrieved plan details
401 අනවසර - වලංගු නොවන හෝ නැතිවූ සත්‍යාපන ටෝකනය
404 හමු නොවීය - සැලැස්ම නොපවතී.

මිල තොරතුරු

බිල්පත් විකල්ප

VPS.org ඔබේ අවශ්යතා සපුරාලීම සඳහා බිල්පත් විකල්ප දෙකක් ලබා දෙයි:

මාසික බිල්පත්
  • කිසිදු පුදුමයක් නොමැතිව ස්ථාවර මාසික අනුපාතයක් පුදුමයක් නැතුව
  • දිගු කාලීන, නිෂ්පාදන වැඩ බර සඳහා හොඳම
  • පැය බිල්පත් වලට සාපේක්ෂව 30% දක්වා ඉතිරි කරන්න
  • සෑම මාසයකම ආරම්භයේදී බිල්පත්
  • කිසිදු සැඟවුණු ගාස්තු හෝ වැඩි ගාස්තු
පැයකට බිල්පත් කිරීම
  • ඔබ භාවිතා කරන පැය සඳහා පමණක් ගෙවන්න
  • පරීක්ෂණ සහ කෙටි කාලීන ව්යාපෘති සඳහා පරිපූර්ණ
  • පැය තුනක කාලයක් තුළ
  • මාසික අනුපාතයට සීමා වූ උපරිම ගාස්තු
  • සංවර්ධන පරිසර සඳහා කදිම

ඇතුළත් විශේෂාංග

සියලු VPS සැලසුම් ඇතුළත් වේ:

  • ✓ SSD ගබඩාව
  • ✓ 99.9% ක් SLA
  • ✓ නොමිලේ දිනපතා පිටපත්
  • ✓ 24/7 සහාය
  • ✓ DDoS ආරක්ෂාව
  • ✓ IPv6 සහාය
  • ✓ සම්පූර්ණ රූට් පිවිසුම
  • ✓ ස්නොට්
  • ✓ පුද්ගලික ජාලකරණ
  • ✓ API පිවිසුම

අමතර සම්පත්

තවත් සම්පත් එකතු කිරීමට අවශ්යද? ලබා ගත හැකි අමතර සේවා:

හරි සැලැස්ම තෝරා

ඉක්මන් මාර්ගෝපදේශය

සැලැස්ම හොඳම දේ සාමාන්‍ය භාවිත අවස්ථා
Starter VPS Personal projects, testing Static websites, learning environments, small blogs
Standard VPS Small businesses, web apps WordPress sites, small e-commerce, development servers
Performance VPS Medium traffic applications High-traffic WordPress, SaaS applications, databases
Enterprise VPS Large-scale applications Enterprise apps, large databases, video streaming
Need help choosing? අපගේ අලෙවි කණ්ඩායම අමතන්න at sales@vps.org for personalized recommendations based on your specific requirements.