latestOpenAPI 3.0.02026-08-1610635191.3 KB
355890b6b4cc
Feeds
Create a new feed
Creates a new feed associated with the authenticated user.
Feed Types:
- feedTypeId=1: X/Twitter feed (internalId = username)
- feedTypeId=2: Reddit feed (internalId = subreddit name without r/ prefix)
- feedTypeId=3: YouTube channel feed (channel handle/URL, resolved to channel source ID automatically)
- feedTypeId=4: RSS feed (internalId = feed URL)
- feedTypeId=5: X News feed (internalId = topic/search query, e.g. "ai")
Access Control:
- Requires valid API token
- Feed will be private to the creating user
- PRO subscription required
post/feeds
Request body
Example request
{
"name": "Tech News Twitter Feed",
"feedTypeId": 1,
"internalId": "elonmusk",
"channel": "https://youtube.com/@AutoContentAPI",
"url": "https://youtube.com/@AutoContentAPI"
}Response
Feed created successfully
Example response
{
"success": true,
"feedId": 1,
"message": "Feed created successfully"
}