The current API Client for healthchecks.io is Nodejs module. For more details see healthchecks.io API Documentation
npm install hchk
let client = require('hchk').Client( '{API_KEY}' );client.listChecks( callback );More details here
client.createCheck( data, callback );More details here
client.pingCheck( uuid, callback );client.updateCheck( uuid, data, callback );More details here
client.pauseCheck( uuid, callback );More details here
client.deleteCheck( uuid, callback );More details here
client.listChannels( callback );More details here