Skip to main content

()

/solutions/developers
DevOps_Ready

Built for Developers, by Developers

The monitoring tool that fits into your CI/CD pipeline and local workflow.

$ npm install @downmonitor/sdk

REST API First

Manage monitors programmatically. Perfect for dynamic infrastructure and CI/CD automation.

Heartbeat Monitoring

Monitor Cron jobs and background tasks. If your script doesn't ping us, we alert you.

Deep Payloads

Go beyond status codes. Validate JSON responses, search for strings, and verify headers.

Integrate into your workflow

Heartbeat monitoring for Cron jobs and scripts.

REST API for automated monitor management.

Deep health checks (JSON body & Header validation).

Custom Webhook payloads for automated recovery.

Unlimited team members for collaboration.

POST /api/v2/monitors
{
  "name": "Production API",
  "url": "https://api.myapp.com/health",
  "type": "http",
  "interval": 10,
  "regions": ["us-east-1", "eu-west-1"],
  "expectations": {
    "status_code": 200,
    "contains": "status:healthy",
    "max_latency": 500
  },
  "notifications": {
    "slack": "#ops-alerts",
    "webhook": "https://ci.myapp.com/restart"
  }
}