OutReply API
OutReply is built to play nice with every no-code and low-code platform. Connect with an API key in minutes — no SDK required.
Triggers: new post published, new comment, quota warning. Actions: schedule post, reply to comment, upload media.
Get beta access →Full modules app with instant triggers, actions & searches. Imports from OpenAPI.
Get beta access →Any HTTP-capable tool. Use our REST API + webhooks today — no waiting.
See quickstart →Typed clients auto-generated from our OpenAPI 3.1 spec.
manage:webhooks scope lets them subscribe to events on your behalf.
You only need two things: an API key with the right scopes, and a webhook URL from your no-code platform. Here's the 60-second path.
manage:webhooks plus whatever
read:* / write:* scopes your automation will use. Copy the token once.
/api/v1/webhooks with that URL and the events you want:
curl https://api.outreply.com/api/v1/webhooks \
-H "Authorization: Bearer outreply_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Zapier — new comments",
"url": "https://hooks.zapier.com/hooks/catch/12345/abcdef/",
"events": ["comment.received"]
}'
The response includes a secret shown once. Save it to
verify signatures later.
X-OutReply-Signature header — see the
Webhooks docs.
Our native Zapier app is in private beta. It exposes everything as polished triggers and actions so you can build Zaps without touching a terminal.
post.publishedpost.failedcomment.receivedcomment.repliedaccount.quota.warningPOST /api/v1/posts/schedulePOST /api/v1/comments/replyPOST /api/v1/media/uploadGET /api/v1/brandsGET /api/v1/pagesWant an invite? Email dev@outreply.com with your Zapier account email.
Make.com supports importing our OpenAPI 3.1 spec directly, which auto-generates a custom-app skeleton with every endpoint available as a module. Our official listed app extends that with polished instant triggers and pre-built bundles.
https://api.outreply.com/api/v1/openapi.json and confirm.Authorization: Bearer {{apiKey}}.manage:webhooks scope as shown above.Want the polished public app? Email dev@outreply.com to join the private beta.
Give integration keys the minimum surface they need. The common mix for Zapier/Make:
manage:webhooks — lets the integration subscribe to events on your behalfread:brands, read:pages — for dropdown pickersread:posts, read:comments — for triggers that return contextwrite:posts — scheduling actionwrite:comments — replying actionwrite:media — upload action