Parameters
1 query
Query parameters
· 1feedIdstringRequiredFeed external ID to list posts for.
Example
a1b2c3d4Returns a paginated list of articles discovered from a specific RSS feed. Ordered by published date (newest first). Supports ?page= and ?limit= query params.
1 query
feedIdstringRequiredFeed external ID to list posts for.
a1b2c3d41 status code documented
itemsobject[]RequiredidstringRequiredPost external ID.
guidstringRequiredUnique identifier from the RSS feed (guid or link).
urlstringOptionalArticle URL.
titlestringOptionalArticle title.
descriptionstringOptionalArticle summary/excerpt.
authorstringOptionalArticle author.
publishedDateDate | string | string | numberOptionalPublished date from the feed.
Published date from the feed.
discoveredDateDate | string | string | numberRequiredWhen the article was first discovered by the system.
When the article was first discovered by the system.
itemCountnumberRequiredTotal number of posts for this feed.
{
"items": [
{
"id": "example_id",
"guid": "example_guid",
"url": "example_url",
"title": "example_title",
"description": "example_description",
"author": "example_author"
}
],
"itemCount": 0
}GET /bff/rss-feed/post-list
curl -X GET "https://api.bizkithub.com/bff/rss-feed/post-list?feedId=a1b2c3d4" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.