RapidWombatRapidWombat Documentation
Integrations

Webhooks

Get a POST to your endpoint the moment an article publishes, with the full article payload.

Webhooks push each article to you the moment it publishes — no polling. Point RapidWombat at any HTTPS endpoint that accepts POST requests: your own backend, or an automation tool like Zapier or Make.

Set it up

  1. In Settings → Integrations, click Connect on the Webhook card.
  2. Enter your Webhook URL.
  3. Enter a Secret token — any string you choose. RapidWombat sends it back with every delivery so you can verify the request really came from us.
  4. Click Connect. Each project supports one webhook.

The webhook settings with the Webhook URL and Secret token fields

What you receive

When an article publishes, RapidWombat sends a POST request to your URL with your token in the Authorization: Bearer <token> header and a JSON body:

FieldWhat it is
idThe article's unique ID
titleThe article title
contentThe full article body, in Markdown
cover_imageThe article's hero image

Prefer pull over push? The REST API lets you fetch articles on your own schedule.

On this page