Status Tiger Documentation
Everything you need to monitor your services, communicate incidents, and keep your users informed with beautiful status pages.
Getting Started
Quick Start Guide
Get up and running in 5 minutes with your first status page and monitors.
Setting Up Monitors
Learn how to configure HTTP, TCP, and ping monitors to track your services.
Creating Status Pages
Build beautiful, customizable status pages for your users.
Managing Incidents
Create, update, and resolve incidents with real-time notifications.
Quick Start
Create an Account
Sign up at statustiger.com - no credit card required for the free tier.
Add Your First Monitor
Click "Add Monitor" and enter your website URL. We'll start checking it immediately.
Create a Status Page
Set up a public status page and add components to show your service health.
Share with Your Users
Share your status page URL (status.yourcompany.com) with your customers.
API Reference
Authentication
Learn how to authenticate API requests using JWT tokens.
Monitors API
Create, update, and manage monitors programmatically.
Incidents API
Automate incident creation and updates via API.
Webhooks
Receive real-time notifications when events occur.
Integration Guides
Slack Integration
Get incident alerts and monitor notifications in Slack.
Discord Webhooks
Send status updates to your Discord server.
PagerDuty
Escalate critical incidents to on-call teams.
Custom Webhooks
Build custom integrations with webhook endpoints.
Example: Create a Monitor via API
curl -X POST https://api.statustiger.com/monitors \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Production API",
"url": "https://api.example.com/health",
"type": "https",
"interval": 60
}'