Healthz
GET
/healthz
const url = 'https://api.vocapable.com/healthz';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://api.vocapable.com/healthz \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Healthz Healthz Get
object
key
additional properties
string
Examplegenerated
{ "additionalProperty": "example"}