List managed database pricing
curl --request GET \
--url https://api.rafftechnologies.com/api/v1/public/pricing/databaseimport requests
url = "https://api.rafftechnologies.com/api/v1/public/pricing/database"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rafftechnologies.com/api/v1/public/pricing/database', 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/database",
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/database"
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/database")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rafftechnologies.com/api/v1/public/pricing/database")
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": 5,
"engine": "postgres",
"name": "1 vCPU",
"vcpu": 1,
"memory_gib": 1,
"storage_gib": 25,
"price_per_hour": 0.010945,
"price_per_month": 7.99,
"region": "us-east",
"is_free_tier": false,
"memory_mib": 0,
"max_connections": 100
}
],
"ha_pricing": [
{
"engine": "postgres",
"price_multiplier": 0.7
}
],
"replica_pricing": [
{
"engine": "postgres",
"price_multiplier": 1,
"price_per_month": 29.99
}
],
"storage_pricing": [
{
"engine": "postgres",
"price_per_gb_month": 0.12,
"min_gb": 10,
"max_gb": 10000
}
]
}{
"error": "<string>",
"message": "<string>"
}Catalog
List Database Pricing
Returns managed database plans plus high availability, read replica, and extra storage pricing. High availability multiplies the plan price — an HA plan costs price_per_month * (1 + price_multiplier).
GET
/
api
/
v1
/
public
/
pricing
/
database
List managed database pricing
curl --request GET \
--url https://api.rafftechnologies.com/api/v1/public/pricing/databaseimport requests
url = "https://api.rafftechnologies.com/api/v1/public/pricing/database"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rafftechnologies.com/api/v1/public/pricing/database', 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/database",
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/database"
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/database")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rafftechnologies.com/api/v1/public/pricing/database")
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": 5,
"engine": "postgres",
"name": "1 vCPU",
"vcpu": 1,
"memory_gib": 1,
"storage_gib": 25,
"price_per_hour": 0.010945,
"price_per_month": 7.99,
"region": "us-east",
"is_free_tier": false,
"memory_mib": 0,
"max_connections": 100
}
],
"ha_pricing": [
{
"engine": "postgres",
"price_multiplier": 0.7
}
],
"replica_pricing": [
{
"engine": "postgres",
"price_multiplier": 1,
"price_per_month": 29.99
}
],
"storage_pricing": [
{
"engine": "postgres",
"price_per_gb_month": 0.12,
"min_gb": 10,
"max_gb": 10000
}
]
}{
"error": "<string>",
"message": "<string>"
}Updated July 6, 2026
Query Parameters
Filter by database engine
Database engine identifier. Defaults to postgres on create; the live catalog (including availability and versions) is GET /api/v1/databases/engines.
Available options:
postgres, mysql, valkey, clickhouse, kafka Example:
"postgres"
Response
Managed database pricing
Last modified on August 26, 2026