API Documentation

Welcome to the UptimeKeeper API documentation. Here you’ll find comprehensive guides and reference materials to help you integrate our monitoring tools with your own applications and systems.

Browse through our guides below to learn how to interact with the UptimeKeeper API and build powerful integrations.

Adding a Monitor via API

Monitor API The Monitor API allows you to programmatically create, configure, and manage monitoring for your websites, APIs, and services. Creating a Website Monitor To create a new website monitor, send a POST request: curl -X POST "https://api.uptimekeeper.com/v1/monitors" \ -H "X-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "type": "http", "name": "Company Website", "url": "https://example.com", "check_frequency": 60, "timeout": 30, "regions": ["us-east", "eu-west", "asia-east"], "validation": { "status_code": 200, "content_check": "Welcome to our site" } }' API Parameters for Website Monitors Parameter Type Description type string Monitor type (http, https, tcp, etc.

Read More
Creating a Status Page via API

Status Page API The Status Page API allows you to programmatically create and manage public status pages for your monitored services. Creating a Status Page To create a new status page, send a POST request: curl -X POST "https://api.uptimekeeper.com/v1/status-pages" \ -H "X-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "name": "Company Service Status", "subdomain": "company-status", "branding": { "logo_url": "https://example.com/logo.png", "primary_color": "#1ECC99", "secondary_color": "#333333" }, "monitors": ["mon_12345", "mon_67890"], "is_public": true }' API Parameters Parameter Type Description name string Display name for the status page subdomain string Subdomain for your status page (company.

Read More
Creating Email Alerts via API

Email Alert API The Email Alert API allows you to programmatically create, manage, and customize email notifications for your monitoring events. Creating an Email Alert To create a new email alert, send a POST request to the alerts endpoint: curl -X POST "https://api.uptimekeeper.com/v1/alerts" \ -H "X-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "type": "email", "name": "Website Down Alert", "recipients": ["[email protected]", "[email protected]"], "monitor_ids": ["mon_12345", "mon_67890"], "triggers": ["down", "degraded"], "threshold_seconds": 60, "include_recovery": true }' API Parameters Parameter Type Description type string Must be “email” for email alerts name string A descriptive name for this alert recipients array List of email addresses to notify monitor_ids array List of monitor IDs to trigger this alert triggers array Event types that trigger the alert (down, degraded, etc.

Read More
Creating SMS Alerts via API

SMS Alert API The SMS Alert API lets you programmatically set up and manage text message notifications for critical monitoring events. Creating an SMS Alert To create a new SMS alert, send a POST request to the alerts endpoint: curl -X POST "https://api.uptimekeeper.com/v1/alerts" \ -H "X-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "type": "sms", "name": "Critical Outage Alert", "phone_numbers": ["+15551234567", "+15559876543"], "monitor_ids": ["mon_12345"], "triggers": ["down"], "threshold_seconds": 30, "include_recovery": false }' API Parameters Parameter Type Description type string Must be “sms” for SMS alerts name string A descriptive name for this alert phone_numbers array List of phone numbers to notify (E.

Read More
Getting Started with the UptimeKeeper API

Welcome to the UptimeKeeper API! This guide will help you get started with using the UptimeKeeper API. We’ll walk you through authentication, making your first API calls, and understanding the response formats. Authentication Generate an API key from your UptimeKeeper dashboard under Settings > API Include your API key in the request header as X-API-Key: your_api_key All API requests must use HTTPS Base URL All API requests should be made to:

Read More
User Profile API

User Profile API The User Profile API enables you to programmatically manage users, their notification preferences, and account settings. Managing User Profiles Retrieve a user’s profile information: curl -X GET "https://api.uptimekeeper.com/v1/users/current" \ -H "X-API-Key: your_api_key" Update a user’s profile information: curl -X PUT "https://api.uptimekeeper.com/v1/users/current" \ -H "X-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "name": "Jane Smith", "email": "[email protected]", "phone": "+15551234567", "timezone": "America/New_York" }' Managing Notification Preferences Update notification preferences:

Read More