> ## 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 All Reviews (Pages)

> Get all reviews for pages, with filters for feed types, favourite, forms, imported sources, sentiments, ratings, labels, and search.



## OpenAPI

````yaml GET /pages/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/feeds:
    get:
      tags:
        - Pages
      description: >-
        Get all reviews for pages, with filters for feed types, favourite,
        forms, imported sources, sentiments, ratings, labels, and search.
      parameters:
        - name: page
          in: query
          description: 'Page number (default: 1)'
          required: false
          schema:
            type: integer
        - name: sort_order
          in: query
          description: >-
            Sort order for feeds. Use 'asc' for ascending or 'desc' for
            descending (default: latest first)
          required: false
          schema:
            type: string
            enum:
              - asc
              - desc
        - name: filter[feed-types][]
          in: query
          description: >-
            Filter by feed types. Can specify multiple values. Accepted values:
            'text', 'video', 'audio', 'social'
          required: false
          schema:
            type: array
            items:
              type: string
              enum:
                - text
                - video
                - audio
                - social
          style: form
          explode: true
        - name: filter[favourite]
          in: query
          description: >-
            Filter for favourite reviews. Use '1' for favourite, '0' or omit for
            all
          required: false
          schema:
            type: string
            enum:
              - '0'
              - '1'
        - name: filter[feed-forms][]
          in: query
          description: Filter by feed form IDs. Can specify multiple form IDs
          required: false
          schema:
            type: array
            items:
              type: string
          style: form
          explode: true
        - name: filter[review_with_comment]
          in: query
          description: >-
            Filter for reviews with comments. Use '1' to show only reviews with
            comments
          required: false
          schema:
            type: string
            enum:
              - '0'
              - '1'
        - name: filter[sentiments][]
          in: query
          description: Filter by sentiment IDs. Can specify multiple sentiment IDs
          required: false
          schema:
            type: array
            items:
              type: string
              enum:
                - positive
                - neutral
                - negative
          style: form
          explode: true
        - name: filter[star-rating][]
          in: query
          description: Filter by star ratings. Can specify multiple ratings (0-5)
          required: false
          schema:
            type: array
            items:
              type: integer
              enum:
                - 1
                - 2
                - 3
                - 4
                - 5
          style: form
          explode: true
        - name: filter[review-labels][]
          in: query
          description: Filter by review label IDs. Can specify multiple label IDs
          required: false
          schema:
            type: array
            items:
              type: string
          style: form
          explode: true
        - name: filter[search]
          in: query
          description: Search filter for reviews. Searches across review content
          required: false
          schema:
            type: string
        - name: only_selected_feed
          in: query
          description: Return only selected feeds. Use '1' to return only selected feeds
          required: false
          schema:
            type: string
            enum:
              - '0'
              - '1'
        - name: per_page_limit
          in: query
          description: 'Number of items per page (default: 15, max: 1000)'
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 1000
      responses:
        '200':
          description: Page reviews fetched successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/PaginatedResponse'
                  unique_form_id:
                    type: string
              examples:
                success:
                  value:
                    data:
                      current_page: 1
                      data:
                        - feed_identifier: feed-social-item-24132
                          feed_type: social_feed
                          id: 24132
                          unique_feedback_id: S4ZbTv
                          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>
                          favourite: 0
                          is_locked: null
                          is_video_converted: null
                          is_audio_converted: null
                          social_feed_type: social
                          customer_designation: null
                          customer_company: null
                          sort_reviews_at: '2025-12-19 13:17:10'
                          feed_fields:
                            name: DarkHorse
                            profile_pic_url: >-
                              https://feedspace-staging.s3.us-east-2.amazonaws.com/uploads/gx8N4Q/appsumo-reviews/appsumo-review-author-profile-YuzS-1766414944.jpeg
                            position: ''
                            organization_name: ''
                            consent: null
                          social_feed:
                            rating_type: 1
                            rating: 5
                            review_at: Dec 19, 2025
                            review_title: null
                            extra_details:
                              embed_video_url: null
                            social_platform:
                              icon_full_url: >-
                                https://feedspace-staging.s3.us-east-2.amazonaws.com/assets/img/social-icons/v2/appsumo.png
                              review_url: >-
                                https://appsumo.com/products/feedspace/reviews/feedspace-gave-me-some-headspace-370375/
                              review_type: 6
                              slug: appsumo
                            attachments: []
                          review_labels: []
                      first_page_url: http://api.feedspace.io/v3/pages/feeds?page=1
                      from: 1
                      next_page_url: null
                      path: http://api.feedspace.io/v3/pages/feeds
                      per_page: 1000
                      prev_page_url: null
                      to: 20
                    unique_form_id: form_f5Uc9agvcXRKgPdDrVCIZYc1
      security:
        - basicAuth: []
components:
  schemas:
    PaginatedResponse:
      type: object
      properties:
        current_page:
          type: integer
        data:
          type: array
          items:
            type: object
        first_page_url:
          type: string
        from:
          type: integer
        next_page_url:
          type:
            - string
            - 'null'
        path:
          type: string
        per_page:
          type: integer
        prev_page_url:
          type:
            - string
            - 'null'
        to:
          type: integer
  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).

````