Skip to main content
Version: 1.1.0

Get API Health

GET 

https://api.tengr.ai/health

Retrieve the current health status of the API.

Request

Responses

Schema

    status stringrequired
const axios = require('axios');

let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.tengr.ai/health',
headers: {
'Accept': 'application/json'
}
};

axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Request Collapse all
Base URL
https://api.tengr.ai
ResponseClear

Click the Send API Request button above and see the response here!