Manage and view your article feed
Total Items
0
Loading feed...
GET /api/feed
Retrieve all feed items (includes site_config if set)
POST /api/feed
Add or update a feed item. Requires article_source_url or article_slug.
DELETE /api/feed/:id
Delete a feed item by ID. Returns deleted item info on success.
PATCH /api/feed/:id
Update specific fields of a feed item (title, body, social content).
POST /api/webhook/social
Push content to social platforms via Make.com webhook. Requires MAKE_SOCIAL_WEBHOOK_URL env var.
The site_config field accepts a JSON object for custom display settings, scheduling, and metadata:
{
"site_config": {
"display": {
"featured": true,
"priority": 1,
"theme": "highlight"
},
"scheduling": {
"publish_at": "2026-04-11T12:00:00Z",
"expires_at": null
},
"metadata": {
"source": "make_automation",
"version": "1.0"
}
}
}Max size: 1MB. Stored as JSONB in the database for flexible querying.