> ## Documentation Index
> Fetch the complete documentation index at: https://help.hoopai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get RSS Feeds

> Get RSS feeds for a specific location and blog with pagination support



## OpenAPI

````yaml /api-reference/blogs/openapi.json get /blogs/site/rss
openapi: 3.0.0
info:
  title: Blogs API
  description: Documentation for Blogs
  version: '1.0'
  contact: {}
servers:
  - url: https://services.leadconnectorhq.com
security: []
tags:
  - name: blogs
    description: Documentation for Blogs
paths:
  /blogs/site/rss:
    get:
      summary: Get RSS Feeds
      description: Get RSS feeds for a specific location and blog with pagination support
      operationId: GetRssFeeds
      parameters:
        - name: locationId
          required: true
          in: query
          description: Location ID to fetch RSS feeds
          schema:
            type: string
        - name: skip
          required: false
          in: query
          description: Number of items to skip for pagination
          schema:
            type: number
        - name: limit
          required: false
          in: query
          description: Number of items to return per page
          schema:
            type: number
        - name: searchTerm
          required: false
          in: query
          description: Search term to filter RSS feeds
          schema:
            type: string
      responses:
        '200':
          description: List of RSS feeds
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RssFeedListResponseDTO'
components:
  schemas:
    RssFeedListResponseDTO:
      type: object
      properties:
        data:
          description: Array of RSS feeds
          type: array
          items:
            $ref: '#/components/schemas/RssFeedResponseDTO'
        total:
          type: number
          description: Total number of RSS feeds
      required:
        - data
        - total
    RssFeedResponseDTO:
      type: object
      properties:
        _id:
          type: string
          example: 507f1f77bcf86cd799439011
          description: Unique identifier of the RSS feed
        name:
          type: string
          example: My RSS Feed
          description: Name of the RSS feed
        url:
          type: string
          example: /blog/feed
          description: URL of the RSS feed
        noOfPosts:
          type: number
          example: 10
          description: Number of posts to include in feed
        loadFullContent:
          type: boolean
          example: true
          description: Whether to load full content in feed
      required:
        - _id
        - name
        - url
        - noOfPosts
        - loadFullContent

````