Skip to main content

Create Newsfeed

POST
/v1/newsfeeds

Request body

FieldTypeRequiredDescription
namestringYesNewsfeed name
keywordsstring[]NoKeywords to filter incoming posts
descriptionstringNoDescription of the newsfeed
business_contextstringNoBusiness 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.