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. Obviously, you need programming skilz in order to take advantage of this feature.

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