Get plan API Reference
GET
/plans/{name}
const url = 'https://api.kupe.cloud/api/v1/plans/pro';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/plans/proRetrieve details for a specific platform plan. This endpoint is public and does not require authentication.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” name
required
string
Plan name
Responses
Section titled “ Responses ”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"}