Parser health check
GET
/parser/health
const url = 'https://example.com/api/v1/parser/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://example.com/api/v1/parser/healthReturns the availability status of the release title parser service.
Responses
Section titled “Responses”Parser health status
Media typeapplication/json
object
parserAvailable
required
Whether the parser service is reachable and healthy
boolean
Examplegenerated
{ "parserAvailable": true}