Webhooks Integration
Send article data as JSON to any URL when you publish — ideal for Zapier, Make.com, n8n, or your own API.
Setup
Configure in Settings → Integrations → Webhooks at Webhooks Settings →.
Full step-by-step guide: Webhooks Setup →
Summary
- Create a webhook URL in your automation tool or server
- Paste the URL in ManscaleAI
- Choose authentication: None (Zapier/Make), Bearer, Basic, or HMAC
- Click Send Test — your endpoint should receive JSON with
"test": true
- Connect
Payload Fields
When an article is published, the webhook sends:
| Field |
Description |
title |
Article headline |
content_html |
HTML body |
content_markdown |
Markdown body |
slug |
URL slug |
meta_description |
SEO description |
featured_image |
Image URL |
status |
Article status |
published_at |
Publish timestamp |
scheduled_date |
Calendar date |
is_republish |
true on re-publish |
Publishing
- Auto-publish: Webhook fires after daily generation
- Manual publish: Webhook fires when you click Publish
- Re-publish: Supported —
is_republish: true in payload
Authentication
| Method |
Use case |
| None |
Zapier, Make.com catch hooks |
| Bearer |
Token in Authorization header |
| Basic |
Username/password |
| HMAC |
Signature in X-ManscaleAI-Signature header |
See the Webhooks Setup → for signature verification and examples.