Skip to content

List plans API Reference

GET
/plans
curl --request GET \
--url https://api.kupe.cloud/api/v1/plans

List all available platform plans with their resource allocations, observability pools, and pricing. This endpoint is public and does not require authentication.

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"
}
}
]
}