Catalog
List managed 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
Query parameters
engine'postgres' | 'mysql' | 'valkey' | 'clickhouse' | 'kafka'
Database engine identifier. Defaults to postgres on create; the live catalog (including availability and versions) is GET /api/v1/databases/engines.
Example:postgres
Filter by database engine
Response
Managed database pricing
Example response
{
"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",
"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
}
]
}