Javascript
import Morphik from 'morphik'; const client = new Morphik({ apiKey: 'My API Key', }); const response = await client.ping.status(); console.log(response.services);
{ "status": "<string>", "services": [ { "name": "<string>", "status": "<string>", "message": "<string>", "response_time_ms": 123 } ], "timestamp": "<string>" }
Comprehensive health check endpoint that queries all underlying services.
Checks the following services:
Returns: DetailedHealthCheckResponse with status of each service
Successful Response
Response for detailed health check endpoint
Show child attributes
Was this page helpful?