List plans API Reference
GET
/plans
const url = 'https://api.kupe.cloud/api/v1/plans';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.kupe.cloud/api/v1/plansList all available platform plans with their resource allocations, observability pools, and pricing. This endpoint is public and does not require authentication.
Responses
Section titled “ Responses ”List of plans
Media type application/json
object
items
Array<object>
object
displayName
string
maxClusters
integer
name
string
observabilityPool
object
logIngestGB
integer
maxActiveSeries
integer
maxReceivers
integer
retentionDays
integer
platformFee
string
resourcePool
object
cpu
string
memory
string
storage
string
Example
{ "items": [ { "displayName": "Pro", "maxClusters": 5, "name": "pro", "observabilityPool": { "logIngestGB": 50, "maxActiveSeries": 50000, "maxReceivers": 10, "retentionDays": 90 }, "platformFee": "49.00", "resourcePool": { "cpu": "8", "memory": "32", "storage": "200" } } ]}