List VM pricing plans
curl --request GET \
--url https://api.rafftechnologies.com/api/v1/public/pricing/vmimport requests
url = "https://api.rafftechnologies.com/api/v1/public/pricing/vm"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rafftechnologies.com/api/v1/public/pricing/vm', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.rafftechnologies.com/api/v1/public/pricing/vm",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.rafftechnologies.com/api/v1/public/pricing/vm"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.rafftechnologies.com/api/v1/public/pricing/vm")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rafftechnologies.com/api/v1/public/pricing/vm")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"plans": [
{
"id": 3,
"vcpu": 2,
"memory_gib": 4,
"ssd_gib": 80,
"transfer_gib": 4000,
"price_per_hour": 0.027764,
"monthly_price": 20,
"yearly_price": 200,
"twenty_four_month_price": 400,
"vm_type": "standard",
"region": "us-east",
"out_of_stock": false
}
]
}{
"error": "<string>",
"message": "<string>"
}Catalog
List VM Pricing
Returns VM pricing plans. Use the plan id as pricing_id when creating a VM.
GET
/
api
/
v1
/
public
/
pricing
/
vm
List VM pricing plans
curl --request GET \
--url https://api.rafftechnologies.com/api/v1/public/pricing/vmimport requests
url = "https://api.rafftechnologies.com/api/v1/public/pricing/vm"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rafftechnologies.com/api/v1/public/pricing/vm', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.rafftechnologies.com/api/v1/public/pricing/vm",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.rafftechnologies.com/api/v1/public/pricing/vm"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.rafftechnologies.com/api/v1/public/pricing/vm")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rafftechnologies.com/api/v1/public/pricing/vm")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"plans": [
{
"id": 3,
"vcpu": 2,
"memory_gib": 4,
"ssd_gib": 80,
"transfer_gib": 4000,
"price_per_hour": 0.027764,
"monthly_price": 20,
"yearly_price": 200,
"twenty_four_month_price": 400,
"vm_type": "standard",
"region": "us-east",
"out_of_stock": false
}
]
}{
"error": "<string>",
"message": "<string>"
}Last modified on May 8, 2026
⌘I