Detailed
GET
/health/detailed
const url = 'https://example.com/health/detailed';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/health/detailedReturn detailed health, including optional provider status.
Args: request: Incoming FastAPI request.
Returns: A detailed health response for operators and smoke tests.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example