All analytics endpoints require admin authentication.
Get System Metrics
Fetch current system-wide metrics.Response
Total number of servers
Total number of users
Active WebSocket connections
Average CPU usage percentage across all nodes
Average memory usage percentage
Average disk usage percentage
API uptime in seconds
Total number of nodes
Number of healthy nodes (heartbeat within last 5 minutes)
Get Node Metrics
Fetch node health and resource metrics.Response
Returns an array of node metric objects.Node ID
Node display name
Node status: “online” or “offline”
CPU usage percentage (0-100)
Memory used in bytes
Total memory in bytes
Disk used in bytes
Total disk in bytes
Number of running containers
Total containers on node
Unix timestamp of last heartbeat
Node uptime in seconds
Get Server Metrics
Fetch server resource metrics, optionally filtered by node.Query Parameters
Filter servers by node ID
Response
Returns an array of server metric objects (limited to 50 servers).Server ID
Server name
Server status: “running”, “stopped”, “installing”, “suspended”, “error”
CPU usage percentage
Memory used in bytes
Memory limit in bytes
Disk used in bytes
Disk limit in bytes
Number of connected players (game servers only)
Frames per second (game servers only)
Ticks per second (Minecraft servers only)
Server uptime in seconds
Unix timestamp of last metrics update
Get CPU Time Series
Fetch CPU usage time series data.Query Parameters
Time range: “24h”, “7d”, “30d”, “90d”, “1y”
Response
Time series data points
Average CPU usage across all data points
Minimum CPU usage
Maximum CPU usage
Peak CPU usage (same as max)
Get Memory Time Series
Fetch memory usage time series data.Query Parameters
Time range: “24h”, “7d”, “30d”, “90d”, “1y”
Response
Same format as CPU time series, with memory usage percentages.Get Disk Time Series
Fetch disk usage time series data.Query Parameters
Time range: “24h”, “7d”, “30d”, “90d”, “1y”
Response
Same format as CPU time series, with disk usage percentages.Get Backup Storage Metrics
Fetch backup storage metrics.Response
Total backup storage used in bytes
Total number of backups
Average backup size in bytes
Unix timestamp of oldest backup
Unix timestamp of newest backup
Storage growth rate (calculated from historical data)
Estimated monthly cost in USD (at $0.02 per GB)
Get Blueprint Metrics
Fetch blueprint usage analytics.Response
Returns an array of blueprint metric objects.Blueprint ID
Blueprint name
Number of servers using this blueprint
Number of running servers using this blueprint
Blueprint category
Popularity metric (same as usageCount)
Get API Metrics
Fetch API usage metrics for the last 24 hours.Response
Total API requests in last 24 hours
Average requests per second
Average response latency in milliseconds
Error rate percentage (0-100)
Top 5 most used endpoints
Get Webhook Metrics
Fetch webhook delivery metrics for the last 7 days.Response
Total number of webhooks configured
Total delivery attempts in last 7 days
Success rate as decimal (0.0-1.0)
Average delivery time in milliseconds
Number of failed deliveries
Get Analytics Dashboard
Fetch complete analytics dashboard data in a single request.Query Parameters
Time range: “24h”, “7d”, “30d”, “90d”, “1y”
Response
Time range used for this data
Unix timestamp when data was generated
System-wide metrics (see Get System Metrics)
Array of node metrics (see Get Node Metrics)
Array of server metrics (see Get Server Metrics)
User activity metrics
CPU time series data (see Get CPU Time Series)
Memory time series data (see Get Memory Time Series)
Disk time series data (see Get Disk Time Series)
Backup storage metrics (see Get Backup Storage Metrics)
Blueprint usage metrics (see Get Blueprint Metrics)
API usage metrics (see Get API Metrics)
Webhook metrics (see Get Webhook Metrics)
Export Analytics
Export analytics data in CSV or JSON format.Query Parameters
Time range: “24h”, “7d”, “30d”, “90d”, “1y”
Export format: “csv” or “json”
Response
CSV Format:- Content-Type: text/csv
- Formatted CSV with sections for system metrics, node metrics, server metrics, backups, blueprints, API, and webhooks
- Content-Type: application/json
- Complete analytics dashboard data (same as Get Analytics Dashboard)
“Unsupported format. Supported formats: csv, json”