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

# Get Facebook Posts Comment Replies

> Fetches replies to a specific comment on a Facebook post. Requires `comment_feedback_id` and `expansion_token`, which are returned by the `get_facebook_post_comments_details` endpoint when `include_reply_info` is set to `true`.



## OpenAPI

````yaml /openapi/facebook.openapi.json get /v1/data/facebook/get_facebook_post_comment_replies
openapi: 3.0.0
info:
  title: agntdata Facebook API
  description: >-
    Unlock Facebook data effortlessly with our powerful scraping tools. Extract
    page names, URLs, contact info, likes, followers, posts, comments,
    Marketplace listings, and meta ads metrics. Perfect for market research,
    trend analysis, and optimizing marketing strategies.
  version: 1.0.0
  contact:
    name: agntdata
    url: https://agntdata.dev
servers:
  - url: https://api.agntdata.dev
    description: agntdata API
security:
  - ApiKeyAuth: []
tags:
  - name: Facebook Marketplace Listings
    description: ''
  - name: Facebook Posts Details
    description: ''
  - name: Facebook Search
    description: >-
      The Facebook Search API group provides a comprehensive set of endpoints to
      perform various types of searches across Facebook data, including posts,
      pages, people, and places. These endpoints enable users to retrieve
      targeted information based on specific query parameters and filters such
      as location, user identifiers, and other relevant attributes.
  - name: Meta Ads Library Search
    description: >-
      The Meta Ads Library Search allows you to search and retrieve detailed
      information from Meta’s Ad Library, providing insights into active and
      inactive ad campaigns across Facebook and Instagram. This tool is ideal
      for marketing analysis, competitor research, and understanding ad
      strategies.
  - name: Facebook Pages Details/Posts
    description: ''
  - name: 'Facebook Groups Details/Posts '
    description: ''
  - name: Facebook Download Media
    description: >-
      Download media (images, videos, audio) from Facebook URLs. Returns file
      size in MB and media type.
paths:
  /v1/data/facebook/get_facebook_post_comment_replies:
    get:
      tags:
        - Facebook Posts Details
      summary: Get Facebook Posts Comment Replies
      description: >-
        Fetches replies to a specific comment on a Facebook post. Requires
        `comment_feedback_id` and `expansion_token`, which are returned by the
        `get_facebook_post_comments_details` endpoint when `include_reply_info`
        is set to `true`.
      operationId: Get_Facebook_Posts_Comment_Replies
      parameters:
        - name: expansion_token
          in: query
          required: true
          schema:
            type: string
          description: >-
            **`expansion_token`** *(string, required)* — The pagination token
            for loading replies. To obtain this value, set
            `include_reply_info=true` in the
            `get_facebook_post_comments_details` endpoint.
        - name: comment_feedback_id
          in: query
          required: true
          schema:
            type: string
          description: >-
            **`comment_feedback_id`** *(string, required)* — The feedback ID of
            the parent comment. To obtain this value, set
            `include_reply_info=true` in the
            `get_facebook_post_comments_details` endpoint.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Get_facebook_get_facebook_post_comment_replies_Response
        '400':
          description: Bad request
        '401':
          description: Unauthorized - invalid API key
        '429':
          description: Rate limit exceeded
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Get_facebook_get_facebook_post_comment_replies_Response:
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Bearer token. Pass your agntdata API key as: Authorization: Bearer
        agnt_live_...

````