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).

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:
| Field | What it is |
|---|---|
id | The article's unique ID |
title | The article title |
content | The full article body, in Markdown |
cover_image | The article's hero image |
Prefer push over pull? Webhooks deliver each article to your endpoint the moment it publishes.