BizKitHub
DocsAPI ReferenceRss Feed/bff/rss-feed/list
getRss FeedAdmin BFF

/bff/rss-feed/list

Returns all RSS feeds linked to the authenticated organisation.

RSS FeedgetBffRss-feedList

Parameters

No parameters required

This endpoint takes no path, query, header or body parameters.

Response schema

1 status code documented

200Success
itemsobject[]Required
Each array item:
idstringRequired

Feed external ID.

urlstringRequired

RSS feed URL.

titlestringOptional

Feed title parsed from the last successful fetch.

descriptionstringOptional

Feed description parsed from the last successful fetch.

activebooleanRequired

Whether this feed is active for the organisation.

lastFetchDateDate | string | string | numberOptional

Timestamp of the last fetch attempt.

One of 4:
Variant 1
Date

Timestamp of the last fetch attempt.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
lastFetchHttpCodenumberOptional

HTTP status code from the last fetch.

nextSyncDateDate | string | string | numberRequired

When the adaptive scheduler will next pick this feed up. See computeRssFeedNextSyncDate.

One of 4:
Variant 1
Date

When the adaptive scheduler will next pick this feed up. See computeRssFeedNextSyncDate.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
insertedDateDate | string | string | numberRequired

When the feed was linked to the organisation.

One of 4:
Variant 1
Date

When the feed was linked to the organisation.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
postCountnumberRequired

Total number of articles discovered from this feed.

latestPostDateDate | string | string | numberOptional

Published date of the most recent article.

One of 4:
Variant 1
Date

Published date of the most recent article.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
oldestPostDateDate | string | string | numberOptional

Published date of the oldest article.

One of 4:
Variant 1
Date

Published date of the oldest article.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number
newsroomShortlistCountTodaynumberRequired

Number of articles from this feed in today's Newsroom shortlist (excluding dismissed). 0 if Newsroom is unused or no items today.

itemCountnumberRequired

Total number of feeds.

Response example

application/json
{
  "items": [
    {
      "id": "example_id",
      "url": "example_url",
      "title": "example_title",
      "description": "example_description",
      "active": false,
      "lastFetchHttpCode": 0,
      "postCount": 0,
      "newsroomShortlistCountToday": 0
    }
  ],
  "itemCount": 0
}

Request example

GET /bff/rss-feed/list

get
curl -X GET "https://api.bizkithub.com/bff/rss-feed/list" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key