RapidWombatRapidWombat Documentation
Integrations

REST API

Pull your articles into any stack with a project API key — two JSON endpoints, no SDK required.

The REST API lets you pull your articles into any system we don't have a native integration for — a custom site, a static-site generator, an internal tool.

Get an API key

In Settings → Integrations, open the REST API card and click Generate API key. The key is shown once — copy it and store it somewhere safe (never in client-side code or a public repo).

The REST API card with the Generate API key button

Authenticate

Send the key with every request in the X-PROJECT-API-KEY header.

Endpoints

List your articles (paginated — limit up to 500, offset to page through):

GET https://api.rapidwombat.com/api/integrations/project/articles/

Fetch a single article:

GET https://api.rapidwombat.com/api/integrations/project/articles/{article_id}/

Each article returns four fields:

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

Prefer push over pull? Webhooks deliver each article to your endpoint the moment it publishes.

On this page