Liveness and database reachability
curl --request GET \
--url https://platform.trylath.com/healthconst options = {method: 'GET'};
fetch('https://platform.trylath.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://platform.trylath.com/health"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://platform.trylath.com/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))
}Liveness and database reachability
Answers 200 with when the database answers, and 503 when it does not. No credential.
GET
/
health
Liveness and database reachability
curl --request GET \
--url https://platform.trylath.com/healthconst options = {method: 'GET'};
fetch('https://platform.trylath.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://platform.trylath.com/health"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://platform.trylath.com/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))
}Response
ok
Last modified on September 13, 2026
Was this page helpful?

