import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.ping.check();
console.log(response.message);
{
"status": "<string>",
"message": "<string>"
}
Simple health check endpoint that returns 200 OK.
import Morphik from 'morphik';
const client = new Morphik({
apiKey: 'My API Key',
});
const response = await client.ping.check();
console.log(response.message);
{
"status": "<string>",
"message": "<string>"
}
Successful Response
Response for health check endpoint
Was this page helpful?