Everything you need to know to get started with Uptimely and monitor your services effectively.
Set up your first monitor in under 5 minutes
Connect with Slack, SMS, webhooks, and more
Integrate Uptimely into your applications
Welcome to Uptimely! This guide will help you set up your first monitor and start tracking your website's uptime.
Your monitor will start checking immediately! You'll see the first results within your chosen interval.
Need to add multiple monitors at once? Use the Bulk Add feature:
Each check provides:
Enable integrity monitoring to detect unexpected content changes. When enabled, Uptimely will alert you if your page content differs from the expected baseline.
Get instant notifications in your Slack workspace:
Tip: You can create channel-specific webhooks to send alerts to different Slack channels based on monitor importance.
Receive critical alerts via SMS (Professional and Enterprise plans):
Note: Professional plans support 1 phone number, Enterprise supports up to 3.
Trigger custom workflows when monitors change status:
Webhook requests include:
{
"monitor_id": 123,
"monitor_name": "My Website",
"status": "DOWN",
"response_time": 5234,
"status_code": 500,
"checked_at": "2025-11-03T10:30:00Z",
"incident_id": 456
}
An incident is created when a monitor detects downtime or issues. Incidents track the start time, duration, and resolution of outages.
Access your incident history from:
All API requests require authentication using your API key. Include it in the Authorization header:
Authorization: Bearer YOUR_API_KEY
https://api.uptimely.co/v1
GET /monitors
Response:
{
"data": [
{
"id": 123,
"name": "My Website",
"url": "https://example.com",
"status": "UP",
"last_check": "2025-11-03T10:30:00Z"
}
]
}
Complete API documentation with all endpoints, parameters, and examples is available to authenticated users.
Contact us for API access