Health
curl --request GET \
--url https://api.example.com/open/v1/healthimport requests
url = "https://api.example.com/open/v1/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/open/v1/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/open/v1/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))
}{
"data": {
"status": "<string>",
"service": "<string>"
}
}Memory
Health
GET
/
open
/
v1
/
health
Health
curl --request GET \
--url https://api.example.com/open/v1/healthimport requests
url = "https://api.example.com/open/v1/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/open/v1/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/open/v1/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))
}{
"data": {
"status": "<string>",
"service": "<string>"
}
}The API Reference is under active development. Request and response schemas may change before a stable release.
Response
200 - */*
OK
Show child attributes
Show child attributes

