Health
curl --request GET \
--url https://catalog-api-dev.demo.igvf.org/api/healthimport requests
url = "https://catalog-api-dev.demo.igvf.org/api/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://catalog-api-dev.demo.igvf.org/api/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "<string>"
}{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}API Reference
Health
Health check endpoint for the API service
Health
curl --request GET \
--url https://catalog-api-dev.demo.igvf.org/api/healthimport requests
url = "https://catalog-api-dev.demo.igvf.org/api/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://catalog-api-dev.demo.igvf.org/api/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "<string>"
}{
"message": "<string>",
"code": "<string>",
"issues": [
{
"message": "<string>"
}
]
}Response
Successful response
⌘I