Health
Get daemon status
Get detailed daemon status including memory usage and active spaces.
GET
/
api
/
daemon
/
status
cURL
curl http://localhost:18080/api/daemon/statusconst options = {method: 'GET'};
fetch('http://localhost:18080/api/daemon/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:18080/api/daemon/status"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:18080/api/daemon/status"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"status": "running",
"memoryUsage": {},
"workspaces": [
"<string>"
]
}⌘I
cURL
curl http://localhost:18080/api/daemon/statusconst options = {method: 'GET'};
fetch('http://localhost:18080/api/daemon/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:18080/api/daemon/status"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost:18080/api/daemon/status"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"status": "running",
"memoryUsage": {},
"workspaces": [
"<string>"
]
}
