Help » Features & reports » Uptime monitoring »

Web hooks

In addition to sending you an email or a tweet, we can also call a script hosted on your server whenever there is an uptime event. Data is POSTed in JSON format to the URL you enter. It will come in as shown below.

{
  'id': '<integer>',
  'name': '<string>',
  'endpoint': '<string>',
  'type': '<up|down>',
  'down_at': '<timestamp>',
  'up_at': '<timestamp|null>'
}