Health
GET
/health
const url = 'https://router.telem.ai/health';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://router.telem.ai/healthResponses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Health Health Get
object
key
additional properties
string
Examplegenerated
{ "additionalProperty": "example"}