An inbound webhook gives you a private HTTPS URL that other systems can POST to when something happens. EasyClaw validates the request, formats the payload safely, and can surface a concise message in your Telegram chat — useful for glue between tools you already run and your agent.
A Pro-oriented integration surface: you create or rotate a secret token in the dashboard, receive a path-style URL, and send JSON (or similar) bodies from your backend, Zapier-style bridge, or CI system. Delivery and rate limits are enforced server-side so abuse does not exhaust shared infrastructure.
/api/webhooks/inbound/<token> — the dashboard shows the exact string to copy.Treat the full URL like a password: anyone who has it can post events into your agent's pipeline until you rotate it.
{"event":"deploy","env":"prod","status":"ok"} → short confirmation in chat.Inbound webhooks require Pro entitlement for the agent. If you are on Starter, use RSS, Calendar, and Telegram-first flows instead. See Starter vs Pro.
POST is the supported method for ingestion; oversized bodies and excessive per-hour volume are rejected or throttled — check the product if you need enterprise-scale ingress.
Next step: confirm Pro on checkout, create the webhook in the dashboard, send a test POST from curl or your backend, and verify delivery in Telegram.
Resources
Built with OpenClaw by Héctor Guedea