Back to Publishers
Publisher Webhook API
Send articles directly to Plus234Feed. Your content goes through our AI pipeline and appears on the platform within minutes.
Quick Start
- 1. Get your API key from the Plus234Feed team
- 2. Set the
Authorization: Bearer p234_...header - 3. POST your article JSON to
/api/webhook/article - 4. Your article goes through AI processing and appears on Plus234Feed
On This Page
Base URL
text
https://article-processor.plus234feed.comAll endpoints below are relative to this base URL.
Every request must include your API key in the Authorization header using the Bearer scheme.
http
Authorization: Bearer p234_a1b2c3d4e5f6...Key Format
- -All keys start with the
p234_prefix - -Keys are 69 characters long (prefix + 64 hex characters)
- -Keys are hashed server-side using SHA-256. We never store the raw key.
- -If you lose your key, contact us for a replacement. We cannot recover it.
Warning: Keep your API key secret. Do not expose it in client-side code, public repositories, or URLs. If compromised, contact us immediately to rotate it.
POST
/api/webhook/articleSubmit a single article for processing. The article goes through data cleaning, AI classification, entity extraction, summarization, and image optimization before being published.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| title | string | Required | Article headline (min 10 characters) |
| content | string | Required | Full article body text (min 50 characters) |
| url | string | Required | Canonical URL of the original article (http/https) |
| category | string | Required | Article category (see supported categories) |
| published_at | string | Required | Publication date in ISO 8601 format |
| image_url | string | Optional | URL of the featured/hero image |
| author | string | Optional | Author name |
| tags | string[] | Optional | Array of relevant tags |
| excerpt | string | Optional | Short description or summary |
Example Request
bash
curl -X POST https://article-processor.plus234feed.com/api/webhook/article \
-H "Authorization: Bearer p234_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"title": "Federal Government Announces New Economic Policy Framework",
"content": "The Federal Government of Nigeria today unveiled a comprehensive...",
"url": "https://example.com/articles/new-economic-policy",
"category": "politics",
"published_at": "2026-02-10T08:00:00Z",
"image_url": "https://example.com/images/economic-policy.jpg",
"author": "John Doe",
"tags": ["economy", "policy", "FG"]
}'Success Response
json
{
"success": true,
"message": "Article received and processed",
"data": {
"tracking_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Federal Government Announces New Economic Policy Framework",
"category": "politics",
"ai_summary": "The Federal Government has introduced a new economic...",
"processing_time_ms": 3420,
"source": "Example News"
}
}Need an API Key?
Contact our team to get your publisher API key and start sending articles to Plus234Feed.

