VPS.org API

പരിശോധന എപിഐ സഹായക്കുറിപ്പുകള്‍Query

പ്ലാനുകൾ 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}/

പ്ലാൻ വിശദാംശങ്ങൾ നേടുക

ഒരു വിപിഎസ് പദ്ധതിയെക്കുറിച്ചുള്ള വിശദമായ വിവരം ലഭ്യമാക്കുക.

പാത പാരാമീറ്ററുകൾ

പരാമീറ്റര്‍ ടൈപ്പ് ചെയ്യുക ആവശ്യമാണ് വിവരണം
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 പദ്ധതികളും:

  • ✓ എസ്എസ്ഡി സ്റ്റോറേജ്
  • ✓ 99.9% മുകളിലെ SLA
  • ✓ ഫ്രീ ദൈനംദിന കരുതലുകള്‍
  • ✓ 24/7 പിന്തുണ
  • ✓ DOS സംരക്ഷണം
  • ✓ 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.