Last updated 1 day ago
Success
"2.0.0"
"v2.0.0-???"
Sucess
"amd64"
const response = await fetch('http://localhost/v2/system/ping', { method: 'GET', headers: {}, }); const data = await response.json();
{ "additionalInfo": "text" }
const response = await fetch('http://localhost/v2/system/version', { method: 'GET', headers: {}, }); const data = await response.json();
{ "api": "2.0.0", "core": "v2.0.0-???" }
const response = await fetch('http://localhost/v2/system/info', { method: 'GET', headers: {}, }); const data = await response.json();
{ "arch": "amd64", "distro": { "codename": "bookworm", "id": "debian", "name": "Debian GNU/Linux 12 (bookworm)", "version": "12" }, "kernel": { "build": "text", "machine": "x86_64", "version": "6.7.6-arch1-1" }, "platform": "text" }