Documentation & Support
Everything you need to master Up99 monitoring
Quick Start Guide
Create Your Account
Sign up for Up99 and verify your email address
Add Your First Monitor
Start monitoring your website or API endpoint
curl -X POST https://api.up99.dev/v1/monitors \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My Website",
"url": "https://example.com",
"type": "http",
"interval": 60
}'
Configure Alerts
Set up notifications to stay informed about issues
curl -X POST https://api.up99.dev/v1/alert-channels \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"type": "email",
"address": "alerts@yourcompany.com",
"enabled": true
}'
View Your Dashboard
Monitor your infrastructure from the central dashboard
API Examples
Create HTTP Monitor
Monitor website uptime and response time
{
"name": "Production Website",
"url": "https://myapp.com",
"type": "http",
"interval": 60,
"timeout": 30,
"expected_status": 200,
"regions": ["us-east", "eu-west", "asia-pacific"]
}
Create API Monitor
Monitor REST API endpoints with custom validation
{
"name": "User API",
"url": "https://api.myapp.com/users",
"type": "api",
"method": "GET",
"headers": {
"Authorization": "Bearer token123",
"Content-Type": "application/json"
},
"expected_response": {
"status": 200,
"contains": "users"
}
}
List All Monitors
Retrieve all monitors for your account
curl -X GET https://api.up99.dev/v1/monitors \
-H "Authorization: Bearer YOUR_API_KEY"
Troubleshooting Guides
Monitor Shows as Down But Site Works
Common causes and solutions for false positive alerts
SSL Certificate Validation Errors
Resolving SSL certificate monitoring issues
API Authentication Problems
Troubleshooting API monitor authentication
Webhook Delivery Failures
Debugging webhook notification issues
Frequently Asked Questions
Getting Started
Monitoring & Alerts
API & Integrations
Additional Resources
Video Tutorials
Watch step-by-step guides for common tasks
Community Forum
Connect with other Up99 users and experts
SDKs & Tools
Download official SDKs and monitoring tools
Still Need Help?
Can't find what you're looking for? Our support team is here to help you succeed with Up99.