Create Newsfeed
POST
/v1/newsfeeds
Request body
| Field | Type | Required | Description |
|---|
name | string | Yes | Newsfeed name |
keywords | string[] | No | Keywords to filter incoming posts |
description | string | No | Description of the newsfeed |
business_context | string | No | Business context for personalized AI insights |
curl -X POST https://twixb.com/api/v1/newsfeeds \
-H "X-API-Key: twxb_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Marketing Trends",
"keywords": ["SEO", "growth hacking", "content marketing"],
"description": "Track the latest marketing strategies",
"business_context": "B2B SaaS startup selling developer tools"
}'
Response
Returns the created newsfeed object. See List Newsfeeds for the full response schema.
{
"id": "f296206d-d083-475d-a25a-711b044962d0",
"name": "Marketing Trends",
"keywords": ["SEO", "growth hacking", "content marketing"],
"source_count": 0,
"unread_count": 0,
"role": "owner"
}
Set business_context to get personalized key learnings in your posts. For example: “I run a B2B SaaS startup selling developer tools” will tailor AI insights to your specific situation.