- Add comprehensive test coverage for alerts package with 285+ new tests - Implement ThresholdsTable component with metric thresholds display - Enhance Alerts page UI with improved layout and metric filtering - Add frontend component tests for Alerts page and ThresholdsTable - Set up Vitest testing infrastructure for SolidJS components - Improve config persistence with better validation - Expand discovery tests with 333+ test cases - Update API, configuration, and Docker monitoring documentation
30 KiB
Pulse API Documentation
Overview
Pulse provides a REST API for monitoring and managing Proxmox VE and PBS instances. All API endpoints are prefixed with /api.
Authentication
Pulse supports multiple authentication methods that can be used independently or together:
Password Authentication
Set a username and password for web UI access. Passwords are hashed with bcrypt (cost 12) for security.
# Systemd
sudo systemctl edit pulse-backend
# Add:
[Service]
Environment="PULSE_AUTH_USER=admin"
Environment="PULSE_AUTH_PASS=your-secure-password"
# Docker
docker run -e PULSE_AUTH_USER=admin -e PULSE_AUTH_PASS=your-password rcourtman/pulse:latest
Once set, users must login via the web UI. The password can be changed from Settings → Security.
API Token Authentication
For programmatic API access and automation. Manage tokens via Settings → Security → API tokens or the /api/security/tokens endpoints.
API-Only Mode: If at least one API token is configured (no password auth), the UI remains accessible in read-only mode while API modifications require a valid token.
# Systemd
sudo systemctl edit pulse-backend
# Add:
[Service]
Environment="API_TOKENS=token-a,token-b"
# Docker
docker run -e API_TOKENS=token-a,token-b rcourtman/pulse:latest
Using Authentication
# With API token (header)
curl -H "X-API-Token: your-secure-token" http://localhost:7655/api/health
# With API Token (query parameter, for export/import)
curl "http://localhost:7655/api/export?token=your-secure-token"
# With session cookie (after login)
curl -b cookies.txt http://localhost:7655/api/health
Legacy note: The
API_TOKENenvironment variable is still honored for backwards compatibility. When bothAPI_TOKENandAPI_TOKENSare supplied, Pulse merges them and prefers the newest token when presenting hints.
Security Features
When authentication is enabled, Pulse provides enterprise-grade security:
- CSRF Protection: All state-changing requests require a CSRF token
- Rate Limiting: 500 req/min general, 10 attempts/min for authentication
- Account Lockout: Locks after 5 failed attempts (15 minute cooldown) with clear feedback
- Secure Sessions: HttpOnly cookies, 24-hour expiry
- Security Headers: CSP, X-Frame-Options, X-Content-Type-Options, etc.
- Audit Logging: All security events are logged
CSRF Token Usage
When using session authentication, include the CSRF token for state-changing requests:
// Get CSRF token from cookie
const csrfToken = getCookie('pulse_csrf');
// Include in request header
fetch('/api/nodes', {
method: 'POST',
headers: {
'X-CSRF-Token': csrfToken,
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
});
Core Endpoints
Health Check
Check if Pulse is running and healthy.
GET /api/health
Response:
{
"status": "healthy",
"timestamp": 1754995749,
"uptime": 166.187561244
}
Version Information
Get current Pulse version and build info.
GET /api/version
Response:
{
"version": "v4.8.0",
"build": "release",
"runtime": "go",
"channel": "stable",
"isDocker": false,
"isDevelopment": false
}
System State
Get complete system state including all nodes and their metrics.
GET /api/state
Response payload includes dedicated collections for each subsystem:
nodes: Proxmox VE nodes with live resource metrics and connection healthvms/containers: Guest workloads with CPU, memory, disk, network, and power statedockerHosts: Hosts that report through the Docker agent, including container inventory- Each host entry includes
issues(restart loops, health check failures),lastSeen,agentVersion, and a flattened list of labelled containers so you can display the same insights the UI shows.
- Each host entry includes
storage: Per-node storage with capacity and usage metadatacephClusters: Ceph health summaries, daemon counts, and pool capacity (see below)physicalDisks: SMART/enclosure telemetry when physical disk monitoring is enabledpbs: Proxmox Backup Server inventory, job status, and datastore utilisationpmg: Proxmox Mail Gateway health and analytics (mail totals, queues, spam distribution)pveBackups/pbsBackups: Backup history across snapshots, storage jobs, and PBSstats: System-wide aggregates (uptime, versions, counts)activeAlerts: Currently firing alerts with hysteresis-aware metadataperformance: Cached chart series for the dashboard
Ceph Cluster Data
When Pulse detects Ceph-backed storage (RBD, CephFS, etc.), the cephClusters array surfaces detailed health information gathered via /cluster/ceph/status and /cluster/ceph/df:
{
"cephClusters": [
{
"id": "pve-cluster-4f7c...",
"instance": "pve-cluster",
"health": "HEALTH_OK",
"healthMessage": "All OSDs are running",
"totalBytes": 128178802368000,
"usedBytes": 87236608000000,
"availableBytes": 40942194432000,
"usagePercent": 68.1,
"numMons": 3,
"numMgrs": 2,
"numOsds": 12,
"numOsdsUp": 12,
"numOsdsIn": 12,
"numPGs": 768,
"pools": [
{ "id": 1, "name": "cephfs_data", "storedBytes": 7130316800000, "availableBytes": 1239814144000, "objects": 1024, "percentUsed": 64.2 }
],
"services": [
{ "type": "mon", "running": 3, "total": 3 },
{ "type": "mgr", "running": 2, "total": 2 }
],
"lastUpdated": 1760219854
}
]
}
Each service entry lists offline daemons in message when present (for example, Offline: mgr.x@pve2), making it easy to highlight degraded components in custom tooling.
PMG Mail Gateway Data
When PMG instances are configured, the pmg array inside /api/state surfaces consolidated health and mail analytics for each gateway:
status/connectionHealthreflect reachability (online+healthywhen the API responds).nodeslists discovered cluster members and their reported role.mailStatscontains rolling totals for the configured timeframe (default: last 24 hours).mailCountprovides hourly buckets for the last day; useful for charting trends.spamDistributioncaptures spam score buckets as returned by PMG.quarantineaggregates queue counts for spam and virus categories.
Snippet:
{
"pmg": [
{
"id": "pmg-primary",
"name": "primary",
"host": "https://pmg.example.com",
"status": "online",
"version": "8.3.1",
"connectionHealth": "healthy",
"lastSeen": "2025-10-10T09:30:00Z",
"lastUpdated": "2025-10-10T09:30:05Z",
"nodes": [
{ "name": "pmg01", "status": "master", "role": "master" }
],
"mailStats": {
"timeframe": "day",
"countTotal": 100,
"countIn": 60,
"countOut": 40,
"spamIn": 5,
"spamOut": 2,
"virusIn": 1,
"virusOut": 0,
"rblRejects": 2,
"pregreetRejects": 1,
"greylistCount": 7,
"averageProcessTimeMs": 480,
"updatedAt": "2025-10-10T09:30:05Z"
},
"mailCount": [
{
"timestamp": "2025-10-10T09:00:00Z",
"count": 100,
"countIn": 60,
"countOut": 40,
"spamIn": 5,
"spamOut": 2,
"virusIn": 1,
"virusOut": 0,
"rblRejects": 2,
"pregreet": 1,
"greylist": 7,
"index": 0,
"timeframe": "hour"
}
],
"spamDistribution": [
{ "score": "low", "count": 10 }
],
"quarantine": { "spam": 5, "virus": 2 }
}
]
}
Docker Agent Integration
Accept reports from the optional Docker agent to track container workloads outside Proxmox.
POST /api/agents/docker/report # Submit agent heartbeat payloads (JSON)
DELETE /api/agents/docker/hosts/<id> # Remove a Docker host that has gone offline
GET /api/agent/version # Retrieve the bundled Docker agent version
GET /install-docker-agent.sh # Download the installation convenience script
GET /download/pulse-docker-agent # Download the standalone Docker agent binary
Agent routes require authentication. Use an API token or an authenticated session when calling them from automation. The payload reports restart loops, exit codes, memory pressure, and health probes per container, and Pulse de-duplicates heartbeats per agent ID so you can fan out to multiple Pulse instances safely. Host responses mirror the /api/state data, including issues, recentExitCodes, and lastSeen timestamps so external tooling can mimic the built-in Docker workspace.
Monitoring Data
Charts Data
Get time-series data for charts (CPU, memory, storage).
GET /api/charts
GET /api/charts?range=1h # Last hour (default)
GET /api/charts?range=24h # Last 24 hours
GET /api/charts?range=7d # Last 7 days
Storage Information
Get detailed storage information for all nodes.
GET /api/storage/
GET /api/storage/<node-id>
Storage Charts
Get storage usage trends over time.
GET /api/storage-charts
Backup Information
Get backup information across all nodes.
GET /api/backups # All backups
GET /api/backups/unified # Unified view
GET /api/backups/pve # PVE backups only
GET /api/backups/pbs # PBS backups only
Snapshots
Get snapshot information for VMs and containers.
GET /api/snapshots
Guest Metadata
Manage custom metadata for VMs and containers (e.g., console URLs).
GET /api/guests/metadata # Get all guest metadata
GET /api/guests/metadata/<guest-id> # Get metadata for specific guest
PUT /api/guests/metadata/<guest-id> # Update guest metadata
DELETE /api/guests/metadata/<guest-id> # Remove guest metadata
Network Discovery
Discover Proxmox nodes on your network.
GET /api/discover # Get cached discovery results (updates every 5 minutes)
Note: Manual subnet scanning via POST is currently not available through the API.
System Settings
Manage system-wide settings.
GET /api/system/settings # Get current system settings (includes env overrides)
POST /api/system/settings/update # Update system settings (admin only)
Configuration
Node Management
Manage Proxmox VE, Proxmox Mail Gateway, and PBS nodes.
GET /api/config/nodes # List all nodes
POST /api/config/nodes # Add new node
PUT /api/config/nodes/<node-id> # Update node
DELETE /api/config/nodes/<node-id> # Remove node
POST /api/config/nodes/test-connection # Test node connection
POST /api/config/nodes/test-config # Test node configuration (for new nodes)
POST /api/config/nodes/<node-id>/test # Test existing node
Add Node Example
curl -X POST http://localhost:7655/api/config/nodes \
-H "Content-Type: application/json" \
-H "X-API-Token: your-token" \
-d '{
"type": "pve",
"name": "My PVE Node",
"host": "https://192.168.1.100:8006",
"user": "monitor@pve",
"password": "password",
"verifySSL": false
}'
System Configuration
Get and update system configuration.
GET /api/config/system # Get system config
PUT /api/config/system # Update system config
Mock Mode Control
Toggle mock data generation used for demos and development.
GET /api/system/mock-mode # Report current mock mode status
POST /api/system/mock-mode # Enable/disable mock mode (admin only)
PUT /api/system/mock-mode # Same as POST, but idempotent for tooling
These endpoints back the npm run mock:on|off|status scripts and trigger the same hot reload behavior. Responses include both enabled and the full mock configuration so tooling can preview generated node/guest counts before flipping the switch.
Security Configuration
Security Status
Check current security configuration status.
GET /api/security/status
Returns information about:
- Authentication configuration
- API token status
- Network context (private/public)
- HTTPS status
- Audit logging status
Password Management
Manage user passwords.
POST /api/security/change-password
Request body:
{
"currentPassword": "old-password",
"newPassword": "new-secure-password"
}
Quick Security Setup
Quick setup for authentication (first-time setup).
POST /api/security/quick-setup
Request body:
{
"username": "admin",
"password": "secure-password",
"generateApiToken": true
}
API Token Management
Manage API tokens for automation workflows, Docker agents, and tool integrations.
Authentication: Requires an admin session or an existing admin-scoped API token.
List tokens
GET /api/security/tokens
Response:
{
"tokens": [
{
"id": "9bf9aa59-3b85-4fd8-9aad-3f19b2c9b6f0",
"name": "ansible",
"prefix": "pulse_1a2b",
"suffix": "c3d4",
"createdAt": "2025-10-14T12:12:34Z",
"lastUsedAt": "2025-10-14T12:21:05Z"
}
]
}
Create a token
POST /api/security/tokens
Content-Type: application/json
{
"name": "ansible"
}
Response (token value is returned once):
{
"token": "pulse_1a2b3c4d5e6f7g8h9i0j",
"record": {
"id": "9bf9aa59-3b85-4fd8-9aad-3f19b2c9b6f0",
"name": "ansible",
"prefix": "pulse_1a2b",
"suffix": "c3d4",
"createdAt": "2025-10-14T12:12:34Z",
"lastUsedAt": null
}
}
Delete a token
DELETE /api/security/tokens/{id}
Returns 204 No Content when the token is revoked.
Legacy compatibility:
POST /api/security/regenerate-tokenis still available but now replaces the entire token list with a single regenerated token. Prefer the endpoints above for multi-token environments.
Login
Enhanced login endpoint with lockout feedback.
POST /api/login
Request body:
{
"username": "admin",
"password": "your-password"
}
Response includes:
- Remaining attempts after failed login
- Lockout status and duration when locked
- Clear error messages with recovery guidance
Logout
End the current session.
POST /api/logout
Account Lockout Recovery
Reset account lockouts (requires authentication).
POST /api/security/reset-lockout
Request body:
{
"identifier": "username-or-ip" // Can be username or IP address
}
This endpoint allows administrators to manually reset lockouts before the 15-minute automatic expiration.
Export/Import Configuration
Backup and restore Pulse configuration with encryption.
POST /api/config/export # Export encrypted config
POST /api/config/import # Import encrypted config
Authentication: Requires one of:
- Active session (when logged in with password)
- API token via X-API-Token header
- Private network access (automatic for homelab users on 192.168.x.x, 10.x.x.x, 172.16.x.x)
- ALLOW_UNPROTECTED_EXPORT=true (to explicitly allow on public networks)
Export includes:
- All nodes and their credentials (encrypted)
- Alert configurations
- Webhook configurations
- Email settings
- System settings (polling intervals, UI preferences)
- Guest metadata (custom console URLs)
NOT included (for security):
- Authentication settings (passwords, API tokens)
- Each instance should have its own authentication
Notifications
Email Configuration
Manage email notification settings.
GET /api/notifications/email # Get email config
PUT /api/notifications/email # Update email config (Note: Uses PUT, not POST)
GET /api/notifications/email-providers # List email providers
Test Notifications
Test notification delivery.
POST /api/notifications/test # Send test notification to all configured channels
Webhook Configuration
Manage webhook notification endpoints.
GET /api/notifications/webhooks # List all webhooks
POST /api/notifications/webhooks # Create new webhook
PUT /api/notifications/webhooks/<id> # Update webhook
DELETE /api/notifications/webhooks/<id> # Delete webhook
POST /api/notifications/webhooks/test # Test webhook
GET /api/notifications/webhook-templates # Get service templates
GET /api/notifications/webhook-history # Get webhook notification history
Create Webhook Example
curl -X POST http://localhost:7655/api/notifications/webhooks \
-H "Content-Type: application/json" \
-H "X-API-Token: your-token" \
-d '{
"name": "Discord Alert",
"url": "https://discord.com/api/webhooks/xxx/yyy",
"method": "POST",
"service": "discord",
"enabled": true
}'
Custom Payload Template Example
curl -X POST http://localhost:7655/api/notifications/webhooks \
-H "Content-Type: application/json" \
-H "X-API-Token: your-token" \
-d '{
"name": "Custom Webhook",
"url": "https://my-service.com/webhook",
"method": "POST",
"service": "generic",
"enabled": true,
"template": "{\"alert\": \"{{.Level}}: {{.Message}}\", \"value\": {{.Value}}}"
}'
Test Webhook
curl -X POST http://localhost:7655/api/notifications/webhooks/test \
-H "Content-Type: application/json" \
-H "X-API-Token: your-token" \
-d '{
"name": "Test",
"url": "https://example.com/webhook",
"service": "generic"
}'
Alert Management
Comprehensive alert management system.
# Alert Configuration
GET /api/alerts/ # Get alert configuration and status
POST /api/alerts/ # Update alert settings
# Alert Monitoring
GET /api/alerts/active # Get currently active alerts
GET /api/alerts/history # Get alert history
DELETE /api/alerts/history # Clear alert history
# Alert Actions
POST /api/alerts/<id>/acknowledge # Acknowledge an alert
POST /api/alerts/<id>/clear # Clear a specific alert
POST /api/alerts/<id>/unacknowledge # Remove acknowledgement
Alert configuration responses model Pulse's hysteresis thresholds and advanced behaviour:
guestDefaults,nodeDefaults,storageDefault,dockerDefaults,pmgThresholdsexpose the baseline trigger/clear values applied globally. Each metric uses{ "trigger": 90, "clear": 85 }, so fractional thresholds (e.g.12.5) are supported.overridesis keyed by resource ID for bespoke thresholds. Setting a threshold to-1disables that signal for that resource.timeThresholdsandmetricTimeThresholdsprovide per-resource/per-metric grace periods, reducing alert noise on bursty workloads.dockerIgnoredContainerPrefixessuppresses alerts for ephemeral containers whose name or ID begins with a listed prefix. Matching is case-insensitive and controlled through the Alerts UI.aggregation,flapping,scheduleconfigure deduplication, cooldown, and quiet hours. These values are shared with the notification pipeline.- Active and historical alerts include
metadata.clearThreshold,resourceType, and other context so UIs can render the trigger/clear pair and supply timeline explanations.
Notification Management
Manage notification destinations and history.
GET /api/notifications/ # Get notification configuration
POST /api/notifications/ # Update notification settings
GET /api/notifications/history # Get notification history
Auto-Registration
Pulse provides a secure auto-registration system for adding Proxmox nodes using one-time setup codes.
Generate Setup Code and URL
Generate a one-time setup code and URL for node configuration. This endpoint requires authentication.
POST /api/setup-script-url
Request:
{
"type": "pve", // "pve", "pmg", or "pbs"
"host": "https://192.168.1.100:8006",
"backupPerms": true // Optional: add backup management permissions (PVE only)
}
Response:
{
"url": "http://pulse.local:7655/api/setup-script?type=pve&host=...",
"command": "curl -sSL \"http://pulse.local:7655/api/setup-script?...\" | bash",
"setupCode": "A7K9P2", // 6-character one-time code
"expires": 1755123456 // Unix timestamp when code expires (5 minutes)
}
Setup Script
Download the setup script for automatic node configuration. This endpoint is public but the script will prompt for a setup code.
GET /api/setup-script?type=pve&host=<encoded-url>&pulse_url=<encoded-url>
The script will:
- Create a monitoring user (pulse-monitor@pam or pulse-monitor@pbs)
- Generate an API token for that user
- Set appropriate permissions
- Prompt for the setup code
- Auto-register with Pulse if a valid code is provided
Auto-Register Node
Register a node automatically (used by setup scripts). Requires either a valid setup code or API token.
POST /api/auto-register
Request with setup code (preferred):
{
"type": "pve",
"host": "https://node.local:8006",
"serverName": "node-hostname",
"tokenId": "pulse-monitor@pam!token-name",
"tokenValue": "token-secret-value",
"setupCode": "A7K9P2" // One-time setup code from UI
}
Request with API token (legacy):
curl -X POST http://localhost:7655/api/auto-register \
-H "Content-Type: application/json" \
-H "X-API-Token: your-api-token" \
-d '{
"type": "pve",
"host": "https://node.local:8006",
"serverName": "node-hostname",
"tokenId": "pulse-monitor@pam!token-name",
"tokenValue": "token-secret-value"
}'
Security Management
Additional security endpoints.
# Apply security settings and restart service
POST /api/security/apply-restart
# Recovery mode (localhost only)
GET /api/security/recovery # Check recovery status
POST /api/security/recovery # Enable/disable recovery mode
Body: {"action": "disable_auth" | "enable_auth"}
Security Features
The setup code system provides multiple layers of security:
- One-time use: Each code can only be used once
- Time-limited: Codes expire after 5 minutes
- Hashed storage: Codes are stored as SHA3-256 hashes
- Validation: Codes are validated against node type and host URL
- No secrets in URLs: Setup URLs contain no authentication tokens
- Interactive entry: Codes are entered interactively, not passed in URLs
Alternative: Environment Variable
For automation, the setup code can be provided via environment variable:
PULSE_SETUP_CODE=A7K9P2 curl -sSL "http://pulse:7655/api/setup-script?..." | bash
Guest Metadata
Manage custom metadata for VMs and containers, such as console URLs.
# Get all guest metadata
GET /api/guests/metadata
# Get metadata for specific guest
GET /api/guests/metadata/<node>/<vmid>
# Update guest metadata
PUT /api/guests/metadata/<node>/<vmid>
POST /api/guests/metadata/<node>/<vmid>
# Delete guest metadata
DELETE /api/guests/metadata/<node>/<vmid>
Example metadata update:
curl -X PUT http://localhost:7655/api/guests/metadata/pve-node/100 \
-H "Content-Type: application/json" \
-H "X-API-Token: your-token" \
-d '{
"consoleUrl": "https://custom-console.example.com/vm/100",
"notes": "Production database server"
}'
System Information
Current Configuration
Get the current Pulse configuration.
GET /api/config
Returns the complete configuration including nodes, settings, and system parameters.
Diagnostics
Get comprehensive system diagnostics information.
GET /api/diagnostics
Returns detailed information about:
- System configuration
- Node connectivity status
- Error logs
- Performance metrics
- Service health
Network Discovery
Discover Proxmox servers on the network.
GET /api/discover
Response:
{
"servers": [
{
"host": "192.168.1.100",
"port": 8006,
"type": "pve",
"name": "pve-node-1"
}
],
"errors": [],
"scanning": false,
"updated": 1755123456
}
Simple Statistics
Get simplified statistics (lightweight endpoint).
GET /simple-stats
Session Management
Logout
End the current user session.
POST /api/logout
Settings Management
UI Settings
Manage user interface preferences.
# Get current UI settings
GET /api/settings
# Update UI settings
POST /api/settings/update
Settings include:
- Theme preferences
- Dashboard layout
- Refresh intervals
- Display options
System Settings
Manage system-wide settings.
# Get system settings
GET /api/system/settings
# Update system settings
POST /api/system/settings/update
System settings include:
- Polling intervals
- Performance tuning
- Feature flags
- Global configurations
Updates
Check for Updates
Check if a new version is available. Returns version info, release notes, and deployment-specific instructions.
GET /api/updates/check
GET /api/updates/check?channel=rc # Override channel (stable/rc)
The response includes deploymentType so the UI/automation can decide whether a self-service update is possible (systemd, proxmoxve, aur) or if a manual Docker image pull is required.
Prepare Update Plan
Fetch scripted steps for a target version. Useful when presenting the release picker in the UI.
GET /api/updates/plan?version=v4.30.0
GET /api/updates/plan?version=v4.30.0&channel=rc
Response example (systemd deployment):
{
"version": "v4.30.0",
"channel": "stable",
"steps": [
"curl -fsSL https://raw.githubusercontent.com/rcourtman/Pulse/main/install.sh | bash -s -- --version v4.30.0"
]
}
Apply Update
Kick off an update using the download URL returned by the release metadata. Pulse runs the install script asynchronously and streams progress via WebSocket.
POST /api/updates/apply
Content-Type: application/json
{ "downloadUrl": "https://github.com/rcourtman/Pulse/releases/download/v4.30.0/pulse-linux-amd64.tar.gz" }
Only deployments that can self-update (systemd, Proxmox VE appliance, AUR) will honour this call. Docker users should continue to pull a new image manually.
Update Status
Retrieve the last known update status or in-flight progress. Possible values: idle, checking, downloading, installing, completed, error.
GET /api/updates/status
Update History
Pulse captures each self-update attempt in a local history file.
GET /api/updates/history # List recent update attempts (optional ?limit=&status=)
GET /api/updates/history/entry?id=<uuid> # Inspect a specific update event
Entries include version, channel, timestamps, status, and error messaging for failed attempts.
Real-time Updates
WebSocket
Real-time updates are available via WebSocket connection.
const ws = new WebSocket('ws://localhost:7655/ws');
ws.onmessage = (event) => {
const data = JSON.parse(event.data);
console.log('Update received:', data);
};
The WebSocket broadcasts state updates every few seconds with the complete system state.
Socket.IO Compatibility
For Socket.IO clients, a compatibility endpoint is available:
GET /socket.io/
Test Notifications
Test WebSocket notifications:
POST /api/test-notification
Simple Statistics
Lightweight statistics endpoint for monitoring.
GET /simple-stats
Returns simplified metrics without authentication requirements.
Rate Limiting
Some endpoints have rate limiting:
- Export/Import: 5 requests per minute
- Test email: 10 requests per minute
- Update check: 10 requests per hour
Error Responses
All endpoints return standard HTTP status codes:
200 OK- Success400 Bad Request- Invalid request data401 Unauthorized- Missing or invalid API token404 Not Found- Resource not found429 Too Many Requests- Rate limited500 Internal Server Error- Server error
Error response format:
{
"error": "Error message description"
}
Examples
Full Example: Monitor a New Node
# 1. Test connection to node
curl -X POST http://localhost:7655/api/config/nodes/test-connection \
-H "Content-Type: application/json" \
-H "X-API-Token: your-token" \
-d '{
"type": "pve",
"host": "https://192.168.1.100:8006",
"user": "root@pam",
"password": "password"
}'
# 2. Add the node if test succeeds
curl -X POST http://localhost:7655/api/config/nodes \
-H "Content-Type: application/json" \
-H "X-API-Token: your-token" \
-d '{
"type": "pve",
"name": "pve-node-1",
"host": "https://192.168.1.100:8006",
"user": "root@pam",
"password": "password",
"verifySSL": false
}'
# 3. Get monitoring data
curl -H "X-API-Token: your-token" http://localhost:7655/api/state
# 4. Get chart data
curl -H "X-API-Token: your-token" http://localhost:7655/api/charts?range=1h
PowerShell Example
# Set variables
$apiUrl = "http://localhost:7655/api"
$apiToken = "your-secure-token"
$headers = @{ "X-API-Token" = $apiToken }
# Check health
$health = Invoke-RestMethod -Uri "$apiUrl/health" -Headers $headers
Write-Host "Status: $($health.status)"
# Get all nodes
$nodes = Invoke-RestMethod -Uri "$apiUrl/config/nodes" -Headers $headers
$nodes | ForEach-Object { Write-Host "Node: $($_.name) - $($_.status)" }
Python Example
import requests
API_URL = "http://localhost:7655/api"
API_TOKEN = "your-secure-token"
headers = {"X-API-Token": API_TOKEN}
# Check health
response = requests.get(f"{API_URL}/health", headers=headers)
health = response.json()
print(f"Status: {health['status']}")
# Get monitoring data
response = requests.get(f"{API_URL}/state", headers=headers)
state = response.json()
for node in state.get("nodes", []):
print(f"Node: {node['name']} - {node['status']}")