curl --request GET \
--url https://services.leadconnectorhq.com/blogs/site/rss \
--header 'Authorization: Bearer <token>'{
"data": [
{
"_id": "507f1f77bcf86cd799439011",
"name": "My RSS Feed",
"url": "/blog/feed",
"noOfPosts": 10,
"loadFullContent": true
}
],
"total": 123
}Get RSS feeds for a specific location and blog with pagination support
curl --request GET \
--url https://services.leadconnectorhq.com/blogs/site/rss \
--header 'Authorization: Bearer <token>'{
"data": [
{
"_id": "507f1f77bcf86cd799439011",
"name": "My RSS Feed",
"url": "/blog/feed",
"noOfPosts": 10,
"loadFullContent": true
}
],
"total": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Location ID to fetch RSS feeds
Number of items to skip for pagination
Number of items to return per page
Search term to filter RSS feeds
Was this page helpful?