Health
curl --request GET \
--url https://api-tokyo.oneinbox.ai/v1/healthimport requests
url = "https://api-tokyo.oneinbox.ai/v1/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-tokyo.oneinbox.ai/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-tokyo.oneinbox.ai/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))
}{}health
Health
GET
/
v1
/
health
Health
curl --request GET \
--url https://api-tokyo.oneinbox.ai/v1/healthimport requests
url = "https://api-tokyo.oneinbox.ai/v1/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api-tokyo.oneinbox.ai/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-tokyo.oneinbox.ai/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))
}{}Response
200 - application/json
Successful Response
The response is of type Response Health V1 Health Get · object.
⌘I