Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns all RSS feeds linked to the authenticated organisation.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredidstringRequiredFeed external ID.
urlstringRequiredRSS feed URL.
titlestringOptionalFeed title parsed from the last successful fetch.
descriptionstringOptionalFeed description parsed from the last successful fetch.
activebooleanRequiredWhether this feed is active for the organisation.
lastFetchDateDate | string | string | numberOptionalTimestamp of the last fetch attempt.
Timestamp of the last fetch attempt.
lastFetchHttpCodenumberOptionalHTTP status code from the last fetch.
nextSyncDateDate | string | string | numberRequiredWhen the adaptive scheduler will next pick this feed up. See computeRssFeedNextSyncDate.
When the adaptive scheduler will next pick this feed up. See computeRssFeedNextSyncDate.
insertedDateDate | string | string | numberRequiredWhen the feed was linked to the organisation.
When the feed was linked to the organisation.
postCountnumberRequiredTotal number of articles discovered from this feed.
latestPostDateDate | string | string | numberOptionalPublished date of the most recent article.
Published date of the most recent article.
oldestPostDateDate | string | string | numberOptionalPublished date of the oldest article.
Published date of the oldest article.
newsroomShortlistCountTodaynumberRequiredNumber of articles from this feed in today's Newsroom shortlist (excluding dismissed). 0 if Newsroom is unused or no items today.
itemCountnumberRequiredTotal number of feeds.
{
"items": [
{
"id": "example_id",
"url": "example_url",
"title": "example_title",
"description": "example_description",
"active": false,
"lastFetchHttpCode": 0,
"postCount": 0,
"newsroomShortlistCountToday": 0
}
],
"itemCount": 0
}GET /bff/rss-feed/list
curl -X GET "https://api.bizkithub.com/bff/rss-feed/list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.