Skip to content

Get plan API Reference

GET
/plans/{name}
curl --request GET \
--url https://api.kupe.cloud/api/v1/plans/pro

Retrieve details for a specific platform plan. This endpoint is public and does not require authentication.

name
required
string

Plan name

Plan details

Media type application/json
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
{
"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"
}
}

Plan not found

Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{
"code": "example",
"error": "example",
"field": "example",
"message": "example",
"severity": "example"
}