HTTP API
This is a brief introduction to the PiKVM API. Since the software consists of multiple microservices, Nginx provides a unified API entry point at /api/
.
Authentication
All API endpoints require authentication. Each request must be authenticated individually, or you can obtain a token and pass it as a cookie with every request. When 2FA is enabled, you must append the one-time code to the password without spaces. You can use any TOTP library (for example, Python) to generate the code:
When the 2FA code is close to expiring, due to request latency the code may become invalid. A simple workaround for resulting 403 errors is to retry the request in seconds. A better approach is to combine this with checking the remaining validity; if about one second remains, delay the request. With this method, you can determine the remaining validity time:
Single-request authorization
- Using X-headers, send:
X-KVMD-User
andX-KVMD-Passwd
- Using HTTP Basic Auth. Contrary to the standard, this implementation does not use headers. HTTP Basic Auth here is only for compatibility with other systems.
Session cookie authentication
- Obtain a cookie:
POST /api/auth/login
Success returns HTTP 200; failure returns HTTP 403.
-
GET /api/auth/check
verifies the cookie status. Likewise, success returns 200 and failure 403. -
POST /api/auth/logout
destroys the cookie.
System
Get software information
GET /api/info
returns all information about the PiKVM device.
Parameters: fields=...
(optional) — return only specified categories, for example fields=system,hw
. By default, all categories are shown.
Click to expand
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
|
Get software logs
GET /api/log
returns logs for all KVMD services in plain text.
Parameters: follow=1
(optional) — long polling mode to tail logs in real time; seek=N
(optional) — show logs for the last N seconds (for example, the last hour).