Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Check if the Friday daemon is running and get basic status information.
cURL
curl http://localhost:18080/health
const options = {method: 'GET'}; fetch('http://localhost:18080/health', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
import requests url = "http://localhost:18080/health" response = requests.get(url) print(response.text)
package main import ( "fmt" "net/http" "io" ) func main() { url := "http://localhost:18080/health" req, _ := http.NewRequest("GET", url, nil) res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(string(body)) }
{ "activeWorkspaces": 2, "uptime": 3600000, "timestamp": "2026-03-20T12:00:00.000Z", "version": { "deno": "2.7.4", "v8": "13.0.245.12", "typescript": "5.6.2" } }
Daemon is healthy
Number of currently active spaces
2
Daemon uptime in milliseconds
3600000
"2026-03-20T12:00:00.000Z"
Show child attributes