Documentation & Support

Everything you need to master Up99 monitoring

Quick Start Guide

1

Create Your Account

Sign up for Up99 and verify your email address

2

Add Your First Monitor

Start monitoring your website or API endpoint

Example
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
  }'
3

Configure Alerts

Set up notifications to stay informed about issues

Example
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
  }'
4

View Your Dashboard

Monitor your infrastructure from the central dashboard

API Examples

Create HTTP Monitor

POST

Monitor website uptime and response time

POST /v1/monitors
Request Body
{
  "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

POST

Monitor REST API endpoints with custom validation

POST /v1/monitors
Request Body
{
  "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

GET

Retrieve all monitors for your account

GET /v1/monitors
Request Body
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

Beginner3 min read

SSL Certificate Validation Errors

Resolving SSL certificate monitoring issues

Intermediate5 min read

API Authentication Problems

Troubleshooting API monitor authentication

Intermediate4 min read

Webhook Delivery Failures

Debugging webhook notification issues

Advanced7 min read

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.