Global stats
GET/stats
Return some key statistics about the platform
Request
Responses
- 200
- 403
- 429
Return some key statistics about the platform
- application/json
- Schema
- Example (from schema)
Schema
total_virtual_machines_launched integerrequired
The number of virtual machines launched (all time)
total_virtual_machines_launched_today integerrequired
The number of virtual machines launched today
total_memory integerrequired
The total amount of memory (in GB)
total_cpu_cores integerrequired
The total number of CPU cores
total_block_storage integerrequired
The total amount of block storage (in GB)
total_organizations integerrequired
The number of organizations
{
"total_virtual_machines_launched": 0,
"total_virtual_machines_launched_today": 0,
"total_memory": 0,
"total_cpu_cores": 0,
"total_block_storage": 0,
"total_organizations": 0
}
403 error response
- application/json
- Schema
- Example (from schema)
Schema
code InternalAuthErrorEnum (string)
Possible values: [internal_auth_error
]
description string
detail
object
details string
{
"code": "internal_auth_error",
"description": "string",
"detail": {
"details": "string"
}
}
You have reached the rate limit for this type of request
- application/json
- Schema
- Example (from schema)
Schema
code RateLimitReachedEnum (string)
Possible values: [rate_limit_reached
]
description string
detail
object
total_permitted integer
The total number of requests per minute that are permitted
{
"code": "rate_limit_reached",
"description": "string",
"detail": {
"total_permitted": 0
}
}
Loading...