health
Liveness probe
GET
/health
const url = 'https://search.example.com/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://search.example.com/healthResponses
Section titled “Responses”Default Response
Media typeapplication/json
object
status
required
string
Examplegenerated
{ "status": "example"}
