Guides, tutorials, and API docs to help you get the most out of your monitoring setup.
We're actively writing comprehensive docs. For now, check out our "Getting Started" guide and explore the platform. More guides coming soon!
Get started in minutes with these essential guides
Learn how each monitoring feature works
Add team members and set access levels
Coming SoonView uptime stats and performance trends
Coming SoonConnect with Slack, Discord, webhooks, and more
Get SMS alerts for critical issues
Automate workflows without code
Build custom integrations with our REST API
Introduction to the REST API
Coming SoonUsing API keys for authentication
Coming SoonCreate and manage monitors via API
Coming SoonConfigure alert channels programmatically
Coming SoonManage public status pages via API
Coming SoonUnderstand API quotas and limits
Coming Soon# Create a new HTTP monitor
curl -X POST https://api.monitorplatform.com/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,
"timeout": 30
}'
# Response
{
"id": "mon_abc123",
"name": "My Website",
"status": "active",
"created_at": "2026-02-11T12:00:00Z"
}Coming soon—in-depth guides and best practices
Additional ways to learn and get support
Sample code and integrations
Coming Soon