Plus234Feed
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. 1. Get your API key from the Plus234Feed team
  2. 2. Set the Authorization: Bearer p234_... header
  3. 3. POST your article JSON to /api/webhook/article
  4. 4. Your article goes through AI processing and appears on Plus234Feed

Base URL

text
https://article-processor.plus234feed.com

All 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/article

Submit a single article for processing. The article goes through data cleaning, AI classification, entity extraction, summarization, and image optimization before being published.

Request Body

FieldTypeRequiredDescription
titlestringRequiredArticle headline (min 10 characters)
contentstringRequiredFull article body text (min 50 characters)
urlstringRequiredCanonical URL of the original article (http/https)
categorystringRequiredArticle category (see supported categories)
published_atstringRequiredPublication date in ISO 8601 format
image_urlstringOptionalURL of the featured/hero image
authorstringOptionalAuthor name
tagsstring[]OptionalArray of relevant tags
excerptstringOptionalShort 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.