ClawPing bridges AI agents and humans. Set reminders, monitor prices, receive instant alerts. Your agents shouldn't shout into the void — give them a voice.
From simple time-based reminders to complex condition alerts — ClawPing handles the whole spectrum.
Natural time formats: 30s, 5m, 2h, 1d. No complex cron syntax for simple reminders — just say when and what.
time-basedMonitor crypto prices via CoinGecko, custom webhook conditions, and any data source you can poll. Fire only when it matters.
condition-basedChat-native interface with slash commands. /remind, /alert, /list, /cancel — talk to ClawPing the way you'd text a colleague.
@ClawPingBotBeautifully formatted HTML emails with full context, timestamps, and source metadata. Professional and always on time.
SMTP / HTMLOther agents ping humans via REST API. ClawScout finds news → ClawPing notifies you. The Claw ecosystem in action.
POST /webhookSet once, repeat forever. Daily standups, weekly reviews, monthly billing reminders — cron-powered and bulletproof.
cron-basedFrom zero to your first ping in minutes. No black magic required.
Deploy ClawPing via Docker or pip. Connect your Telegram bot token and SMTP config. Takes under 5 minutes.
Use Telegram slash commands, the REST API, or let other agents call your webhook endpoint. Multiple interfaces, one service.
ClawPing delivers to Telegram, Email, or both — on time, every time. APScheduler ensures nothing slips through the cracks.
Whether you're a human on Telegram or an agent calling an API — ClawPing speaks your language.
# Time-based reminder
/remind 30m Check the oven
# Price alert — BTC threshold
/alert btc below 60000 "BTC dipped, time to act?"
# Recurring standup (cron syntax)
/repeat "0 9 * * 1-5" Daily standup — update Jira first!
# One-shot reminder in 2 hours
/remind 2h Deploy to production
# List all active pings
/list
# Cancel a specific ping
/cancel ping_7f3a9b2c
# Instant test ping
/ping Hello from ClawPing! 🔔# Create a time-based reminder
curl -X POST https://api.clawping.xyz/api/pings \
-H "Authorization: Bearer $CLAWPING_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"type": "reminder",
"message": "Deploy the new version to production",
"delay": "2h",
"channel": "telegram",
"chat_id": "437734870"
}'
# Create a price condition alert
curl -X POST https://api.clawping.xyz/api/pings \
-H "Authorization: Bearer $CLAWPING_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"type": "condition",
"condition": {
"asset": "bitcoin",
"operator": "below",
"threshold": 60000
},
"message": "BTC dipped — check your positions",
"channel": "email",
"email": "you@example.com"
}'// ClawScout triggers ClawPing
// POST https://api.clawping.xyz/webhook/agents
// X-Agent-Key: sk_agent_clawscout_xxx
{
"agent_id": "clawscout-v1.2",
"priority": "urgent",
"recipient": {
"channel": "telegram",
"chat_id": "437734870"
},
"notification": {
"title": "🚨 Breaking: SEC approves Bitcoin ETF",
"body": "Major development detected. BTC price impact expected.",
"source_url": "https://reuters.com/article/...",
"timestamp": "2026-02-25T09:31:00Z"
},
"metadata": {
"triggered_by": "news_monitor",
"confidence": 0.97,
"tags": ["crypto", "regulatory", "breaking"]
}
}// HTTP 201 Created — POST /api/pings
{
"id": "ping_7f3a9b2c",
"status": "scheduled",
"type": "reminder",
"message": "Deploy the new version to production",
"channel": "telegram",
"chat_id": "437734870",
"scheduled_at": "2026-02-25T11:31:00Z",
"created_at": "2026-02-25T09:31:00Z",
"metadata": {
"delay_parsed": "2h",
"delay_ms": 7200000
},
"_links": {
"self": "/api/pings/ping_7f3a9b2c",
"cancel": "/api/pings/ping_7f3a9b2c/cancel",
"list": "/api/pings"
}
}Developers, AI engineers, traders, or team leads — ClawPing fits your workflow.
Monitor CI/CD pipelines, API health, and deployment status. Get pinged instantly when builds fail or error rates spike — no more babysitting dashboards.
ClawScout detects breaking news → triggers ClawPing webhook → notifies human. The Claw ecosystem orchestrates so you never miss critical events, even while sleeping.
Price alerts for BTC, ETH, and any CoinGecko-listed asset. Set thresholds once, react before the crowd does. Speed is alpha.
Recurring reminders for standups, sprint reviews, and deadlines. Set once, run forever. Stop being the person who manually sends "don't forget" messages.
ClawPing is actively evolving. Here's what's being cooked up.
Expand notifications to Discord servers and Slack workspaces.
"Remind me tomorrow at 9am" — no cron syntax required.
Visual UI to manage, pause, and analyze all active pings.
Critical alerts straight to your phone via SMS providers.
Weather, uptime monitoring, GitHub PRs, custom API polling.
Standardized inter-agent communication across the Claw ecosystem.
Ping humans. Ping agents. Ping anything.
ClawPing keeps you connected to what matters.