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

/bff/rss-feed/post-list

Returns a paginated list of articles discovered from a specific RSS feed. Ordered by published date (newest first). Supports ?page= and ?limit= query params.

RSS FeedgetBffRss-feedPost-list

Parameters

1 query

Query parameters

· 1
feedIdstringRequired

Feed external ID to list posts for.

Examplea1b2c3d4

Response schema

1 status code documented

200Success
itemsobject[]Required
Each array item:
idstringRequired

Post external ID.

guidstringRequired

Unique identifier from the RSS feed (guid or link).

urlstringOptional

Article URL.

titlestringOptional

Article title.

descriptionstringOptional

Article summary/excerpt.

authorstringOptional

Article author.

publishedDateDate | string | string | numberOptional

Published date from the feed.

One of 4:
Variant 1
Date

Published date from the feed.

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

When the article was first discovered by the system.

One of 4:
Variant 1
Date

When the article was first discovered by the system.

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

Total number of posts for this feed.

Response example

application/json
{
  "items": [
    {
      "id": "example_id",
      "guid": "example_guid",
      "url": "example_url",
      "title": "example_title",
      "description": "example_description",
      "author": "example_author"
    }
  ],
  "itemCount": 0
}

Request example

GET /bff/rss-feed/post-list

get
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"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key