API liveness probe (identical to /healthz)
curl --request GET \
--url https://api.signuprisk.com/v1/pingconst options = {method: 'GET'};
fetch('https://api.signuprisk.com/v1/ping', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.signuprisk.com/v1/ping"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signuprisk.com/v1/ping"
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": "ok",
"timestamp": "<string>"
}Operations
API liveness probe (identical to /healthz)
GET
/
v1
/
ping
API liveness probe (identical to /healthz)
curl --request GET \
--url https://api.signuprisk.com/v1/pingconst options = {method: 'GET'};
fetch('https://api.signuprisk.com/v1/ping', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.signuprisk.com/v1/ping"
response = requests.get(url)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signuprisk.com/v1/ping"
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": "ok",
"timestamp": "<string>"
}