Monitor uptime and performance via Pingdom API. Manage checks and view reports.
Scanned 2/12/2026
Install via CLI
openskills install openclaw/skills---
name: pingdom
description: Monitor uptime and performance via Pingdom API. Manage checks and view reports.
metadata: {"clawdbot":{"emoji":"📡","requires":{"env":["PINGDOM_API_TOKEN"]}}}
---
# Pingdom
Uptime monitoring.
## Environment
```bash
export PINGDOM_API_TOKEN="xxxxxxxxxx"
```
## List Checks
```bash
curl "https://api.pingdom.com/api/3.1/checks" -H "Authorization: Bearer $PINGDOM_API_TOKEN"
```
## Get Check Results
```bash
curl "https://api.pingdom.com/api/3.1/results/{checkId}" -H "Authorization: Bearer $PINGDOM_API_TOKEN"
```
## Create Check
```bash
curl -X POST "https://api.pingdom.com/api/3.1/checks" \
-H "Authorization: Bearer $PINGDOM_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "My Website", "host": "example.com", "type": "http"}'
```
## Links
- Docs: https://docs.pingdom.com/api/
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.