curl --request POST \
--url https://api.example.com/uptime/monitors/create \
--header 'Content-Type: application/json' \
--data '
{
"websiteId": "<string>",
"url": "<string>",
"interval": "<string>",
"timeout": 123,
"cacheBust": true,
"jsonParsingConfig": {}
}
'{
"id": "<string>",
"websiteId": "<string>",
"url": "<string>",
"interval": "<string>",
"status": "<string>",
"createdAt": "<string>"
}Create and manage uptime monitoring schedules
curl --request POST \
--url https://api.example.com/uptime/monitors/create \
--header 'Content-Type: application/json' \
--data '
{
"websiteId": "<string>",
"url": "<string>",
"interval": "<string>",
"timeout": 123,
"cacheBust": true,
"jsonParsingConfig": {}
}
'{
"id": "<string>",
"websiteId": "<string>",
"url": "<string>",
"interval": "<string>",
"status": "<string>",
"createdAt": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/databuddy-analytics/Databuddy/llms.txt
Use this file to discover all available pages before exploring further.
1m, 5m, 15m, 30m, 1h, 6h, 12h, 24hcurl -X POST https://api.databuddy.cc/uptime/monitors/create \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"websiteId": "web_xyz789",
"url": "https://example.com",
"interval": "5m",
"timeout": 10000,
"cacheBust": true
}'
active, paused, or stopped{
"id": "sched_abc123",
"websiteId": "web_xyz789",
"url": "https://example.com",
"interval": "5m",
"timeout": 10000,
"cacheBust": true,
"status": "active",
"createdAt": "2024-03-01T17:30:00Z"
}
curl -X POST https://api.databuddy.cc/uptime/monitors/list \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"websiteId": "web_xyz789"
}'
curl -X POST https://api.databuddy.cc/uptime/monitors/update \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"id": "sched_abc123",
"interval": "15m",
"timeout": 15000
}'
curl -X POST https://api.databuddy.cc/uptime/monitors/delete \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"id": "sched_abc123"
}'