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
  • ✓ ការ​ចូលដំណើរការ Root ពេញលេញ
  • ✓ រូបថត​ខ្លីៗ
  • ✓ ការ​តភ្ជាប់​បណ្ដាញ​ឯកជន
  • ✓ ការ​ចូលដំណើរការ API

ធនធាន​បន្ថែម

ត្រូវការ​បន្ថែម​ធនធាន​បន្ថែម​ទៀត​ទេ & # 160;? សេវា​បន្ថែម​ដែល​មាន & # 160; ៖

ការ​ជ្រើស​ផែនការ​ត្រឹមត្រូវ

ការណែនាំរហ័ស

ផែនការ ល្អបំផុតសម្រាប់ ករណីប្រើប្រាស់ធម្មតា
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.