> ## 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.

# Single Social Review

> Get details of a specific social review by its ID. Social reviews are testimonials imported from social platforms (G2, Trustpilot, Product Hunt, etc.) and manual or web-link imports that are stored as social records.

Get details of a specific social review by its numeric ID (the `id` field from [List All Reviews](/api-reference/Feeds/list-feeds)).


## OpenAPI

````yaml GET /feeds/social/{id}
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:
  /feeds/social/{id}:
    get:
      tags:
        - SocialReviews
      description: >-
        Get details of a specific social review by its ID. Social reviews are
        testimonials imported from social platforms (G2, Trustpilot, Product
        Hunt, etc.) and manual or web-link imports that are stored as social
        records.
      parameters:
        - name: id
          in: path
          description: >-
            The review's numeric ID, as returned in the `id` field of `GET
            /feeds`. This is **not** the `unique_feedback_id` field — that value
            is not accepted here.
          required: true
          schema:
            type: integer
            example: 1201
      responses:
        '200':
          description: Social review details fetched successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/SocialFeedResponse'
              examples:
                success:
                  value:
                    data:
                      id: 1201
                      unique_feedback_id: aB3xYz
                      language_id: null
                      comment: Feedspace made collecting testimonials effortless.
                      favourite: false
                      sentiment_id: 1
                      created_at: '2025-06-10T09:15:00.000000Z'
                      feed_fields:
                        name: Jordan Lee
                        profile_pic_url: null
                        position: Founder
                        organization_name: Acme
                      rating_type: star
                      rating: '5'
                      review_at: '2025-06-10T09:15:00.000000Z'
                      review_title: null
                      public_url: https://www.feedspace.io/sf/aB3xYz
                      public_display_url: https://www.feedspace.io/sf/aB3xYz
                      social_platform:
                        icon_full_url: >-
                          https://static.feedspace.io/assets/img/social-icons/v2/g2.png
                        review_url: https://www.g2.com/products/example/reviews
                        review_type: social
                        name: G2
                        slug: g2
                      social_feed_source:
                        source_url: https://www.g2.com/products/example/reviews
                      meta_properties: null
                      meta_attributes: []
                      allow_video_audio_transcript: false
                      question_answers: []
                      attachments: []
                      is_pro_editor_enabled: false
                      is_download_enabled: false
                      reviewer_social_urls: []
                      duplicated_from_id: null
                      review_labels: []
                      extra_details:
                        embed_video_url: null
      security:
        - basicAuth: []
components:
  schemas:
    SocialFeedResponse:
      type: object
      properties:
        id:
          type: integer
          description: Numeric review ID.
        unique_feedback_id:
          type: string
        language_id:
          type:
            - integer
            - 'null'
        comment:
          type:
            - string
            - 'null'
          description: The review text.
        favourite:
          type: boolean
        sentiment_id:
          type:
            - integer
            - 'null'
        created_at:
          type: string
        feed_fields:
          $ref: '#/components/schemas/FeedFields'
        rating_type:
          type:
            - string
            - 'null'
        rating:
          type:
            - string
            - 'null'
        review_at:
          type:
            - string
            - 'null'
        review_title:
          type:
            - string
            - 'null'
        public_url:
          type:
            - string
            - 'null'
        public_display_url:
          type:
            - string
            - 'null'
        social_platform:
          type:
            - object
            - 'null'
          description: >-
            Source platform metadata: icon_full_url, review_url, review_type,
            name, slug.
        social_feed_source:
          type:
            - object
            - 'null'
          description: Original source URL of the review.
        meta_properties:
          type:
            - object
            - 'null'
        meta_attributes:
          type: array
          items: {}
        allow_video_audio_transcript:
          type: boolean
        question_answers:
          type: array
          items: {}
          description: >-
            Fixed set of reviewer profile fields (name, email, designation,
            company, etc.).
        attachments:
          type: array
          items: {}
          description: >-
            Media attachments; each has id, attachment_url, attachment_type, and
            (for video/audio) static_thumb_url, transcript, and conversion
            status.
        is_pro_editor_enabled:
          type: boolean
        is_download_enabled:
          type: boolean
        reviewer_social_urls:
          type: array
          items: {}
        duplicated_from_id:
          type:
            - integer
            - 'null'
        review_labels:
          type: array
          items: {}
          description: Array of { id, name, attributes }.
        extra_details:
          type:
            - object
            - 'null'
    FeedFields:
      type: object
      properties:
        name:
          type: string
        profile_pic_url:
          type:
            - string
            - 'null'
        position:
          type:
            - string
            - 'null'
        organization_name:
          type:
            - string
            - 'null'
        consent:
          type:
            - boolean
            - 'null'
  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).

````