Send articles directly to Plus234Feed. Your content goes through our AI pipeline and appears on the platform within minutes.
Authorization: Bearer p234_... header/api/webhook/articlehttps://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.
Authorization: Bearer p234_a1b2c3d4e5f6...p234_ prefixWarning: 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.
/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.
| 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 |
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": 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"
}
}Contact our team to get your publisher API key and start sending articles to Plus234Feed.