v51

latestOpenAPI 3.0.1raw.githubusercontent.com2026-08-01169142751.2 KB
Subscriptions - Essentials

Get Essentials plans

Gets a list of Essentials plans. The plan describes the dataset size, cloud provider and region, and available database configuration options for an Essentials database.

get/v1/fixed/plans

Query parameters

provider'AWS' | 'GCP' | 'AZURE'

Returns plans supported by the specified Cloud Provider.

redisFlexboolean

Returns Redis Flex plans.

Response

OK

linksobject[]

Example response

{
  "plans": [
    {
      "id": 98183,
      "name": "Multi-AZ 5GB",
      "size": 5,
      "sizeMeasurementUnit": "GB",
      "provider": "AWS",
      "region": "us-east-1",
      "regionId": 1,
      "price": 100,
      "priceCurrency": "USD",
      "pricePeriod": "Month",
      "maximumDatabases": 1,
      "availability": "Multi-zone",
      "connections": "unlimited",
      "cidrAllowRules": 16,
      "supportDataPersistence": true,
      "supportInstantAndDailyBackups": true,
      "supportReplication": true,
      "supportClustering": false,
      "supportSsl": true,
      "supportedAlerts": [
        "datasets-size",
        "latency",
        "throughput-lower-than",
        "throughput-higher-than"
      ],
      "customerSupport": "Standard",
      "links": []
    },
    {
      "id": 98181,
      "name": "Multi-AZ 1GB",
      "size": 1,
      "sizeMeasurementUnit": "GB",
      "provider": "AWS",
      "region": "us-east-1",
      "regionId": 1,
      "price": 22,
      "priceCurrency": "USD",
      "pricePeriod": "Month",
      "maximumDatabases": 1,
      "availability": "Multi-zone",
      "connections": "1024",
      "cidrAllowRules": 8,
      "supportDataPersistence": true,
      "supportInstantAndDailyBackups": true,
      "supportReplication": true,
      "supportClustering": false,
      "supportSsl": true,
      "supportedAlerts": [
        "datasets-size",
        "throughput-higher-than",
        "throughput-lower-than",
        "latency",
        "connections-limit"
      ],
      "customerSupport": "Standard",
      "links": []
    }
  ],
  "links": [
    {
      "rel": "self",
      "href": "http://localhost:8081/v1/fixed/plans?cloud_provider=AWS",
      "type": "GET"
    }
  ]
}