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

# Get Selected Feeds

> Get feed details for selected feed identifiers. This endpoint accepts an array of feed identifiers and returns the corresponding feed details formatted for pages.



## OpenAPI

````yaml POST /pages/selected-feeds
openapi: 3.1.0
info:
  title: Feedspace API
  description: Feedspace API v3 - Feedback and testimonial management platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.feedspace.io/v3
security: []
paths:
  /pages/selected-feeds:
    post:
      tags:
        - Pages
      description: >-
        Get feed details for selected feed identifiers. This endpoint accepts an
        array of feed identifiers and returns the corresponding feed details
        formatted for pages.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                selected_feeds:
                  type: array
                  items:
                    type: string
                  description: >-
                    Array of feed identifiers. Format: feed-text-item-{id},
                    feed-video-item-{id}, feed-audio-item-{id}, or
                    feed-social-item-{id}. e.g. ['feed-text-item-9793',
                    'feed-video-item-123']
              required:
                - selected_feeds
            examples:
              request:
                value:
                  selected_feeds:
                    - feed-text-item-9793
                    - feed-video-item-123
                    - feed-audio-item-544
                    - feed-social-item-170021
      responses:
        '200':
          description: Selected feeds fetched successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/SelectedPageFeed'
              examples:
                success:
                  value:
                    data:
                      - id: 24132
                        unique_feedback_id: S4ZbTv
                        response: '354'
                        comment: >-
                          <p class="text-gray-800 dark:text-neutral-200">I've
                          looked at tools like Feedspace for a while and nothing
                          really clicked until this one. I grabbed Tier 1 for a
                          client and it's been great, which quickly convinced me
                          to purchase Tier 2 for myself. The extra widgets and
                          longer recording times make a big difference. Setup
                          was super easy, and I even jumped on a 1:1 with Chirag
                          (the CEO), who was genuinely helpful. Honest take:
                          Tier 1 is a bit limiting. If you're serious about
                          using Feedspace, Tier 2+ is where the real value is.
                          Totally worth it. Test</p>
                        sentiment_id: null
                        extra_details:
                          answer_type: null
                          approved: true
                          author_id: 922322
                          author_name: DarkHorse
                        app_user_name: DarkHorse
                        favourite: false
                        rating: 5
                        review_text: null
                        review_title: null
                        reviewed_at: '2025-12-19T00:00:00.000000Z'
                        created_at: '2025-12-22T14:49:08.000000Z'
                        feed_type: social_feed
                        rating_type: 1
                        feed_form_id: null
                        social_feed_type: social
                        customer_avatar: >-
                          uploads/gx8N4Q/appsumo-reviews/appsumo-review-author-profile-YuzS-1766414944.jpeg
                        review_at: Dec 19, 2025
                        review_url: >-
                          https://appsumo.com/products/feedspace/reviews/feedspace-gave-me-some-headspace-370375/
                        customer_designation: null
                        customer_company: ''
                        product_name: ''
                        social_platform:
                          id: 36
                          name: AppSumo
                          slug: appsumo
                          icon_url: /assets/img/social-icons/v2/appsumo.png
                          icon_full_url: >-
                            https://feedspace-staging.s3.us-east-2.amazonaws.com/assets/img/social-icons/v2/appsumo.png
                        workspace_name: Primary
                        display_review_url: >-
                          https://appsumo.com/products/feedspace/reviews/feedspace-gave-me-some-headspace-370375/
                        attachments: []
      security:
        - basicAuth: []
components:
  schemas:
    SelectedPageFeed:
      type: object
      description: >-
        Feed object returned by the selected-feeds endpoint, formatted for
        pages. Structure varies based on feed_type (video_feed, text_feed,
        audio_feed, or social_feed).
      properties:
        id:
          type: integer
          description: Feed ID
        unique_feedback_id:
          type: string
          description: Unique feedback identifier
        response:
          type:
            - string
            - 'null'
          description: Response value (can be string or numeric)
        comment:
          type:
            - string
            - 'null'
          description: Review comment (may contain HTML)
        sentiment_id:
          type:
            - integer
            - 'null'
          description: Sentiment ID
        extra_details:
          type:
            - object
            - 'null'
          description: >-
            Extra details object. Structure varies by feed type and source. May
            contain customer information, metadata, author details, or other
            feed-specific data.
        app_user_name:
          type:
            - string
            - 'null'
          description: App user name or customer name
        favourite:
          type: boolean
          description: Whether the feed is marked as favourite
        rating:
          type:
            - integer
            - 'null'
          description: Rating value (typically 0-5)
        review_text:
          type:
            - string
            - 'null'
          description: Review text content
        review_title:
          type:
            - string
            - 'null'
          description: Review title
        reviewed_at:
          type:
            - string
            - 'null'
          format: date-time
          description: Date and time when the review was submitted
        created_at:
          type: string
          format: date-time
          description: Date and time when the feed was created
        feed_type:
          type: string
          enum:
            - video_feed
            - text_feed
            - audio_feed
            - social_feed
          description: Type of feed
        rating_type:
          type:
            - integer
            - 'null'
          description: Rating type identifier
        feed_form_id:
          type:
            - integer
            - 'null'
          description: Feed form ID if associated with a form
        social_feed_type:
          type:
            - string
            - 'null'
          description: Social feed type (e.g., 'social', 'manual_text', 'manual_video')
        customer_avatar:
          type:
            - string
            - 'null'
          description: Customer avatar image path or URL
        review_at:
          type:
            - string
            - 'null'
          description: Formatted review date (e.g., 'Dec 19, 2025')
        review_url:
          type:
            - string
            - 'null'
          description: URL to the original review
        customer_designation:
          type:
            - string
            - 'null'
          description: Customer designation or job title
        customer_company:
          type:
            - string
            - 'null'
          description: Customer company name
        product_name:
          type:
            - string
            - 'null'
          description: Product name
        social_platform:
          type:
            - object
            - 'null'
          description: Social platform information (present for social feeds)
          properties:
            id:
              type: integer
              description: Platform ID
            name:
              type: string
              description: Platform name
            slug:
              type: string
              description: Platform slug
            icon_url:
              type: string
              description: Platform icon URL (relative)
            icon_full_url:
              type: string
              description: Platform icon URL (full)
        workspace_name:
          type:
            - string
            - 'null'
          description: Workspace name
        display_review_url:
          type:
            - string
            - 'null'
          description: Display URL for the review
        review_website_logo:
          type:
            - string
            - 'null'
          description: Review website logo URL (may be present for some feed types)
        attachments:
          type: array
          items:
            type: object
          description: Array of attachment objects (videos, images, etc.)
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        HTTP Basic Authentication using API Key and Secret Key. The credentials
        should be Base64 encoded in the format 'api_key:secret_key'. You can
        obtain your API Key and Secret Key from Feedspace → Automation → API
        (https://app.feedspace.io/automation/api).

````