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 고유 플랜 ID

예시 요청

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.