Facebook Replies API

The Replies API from Facebook — 1 operation(s) for replies.

Operations 1

GET /{threads-media-id}/replies Facebook Get Threads Replies #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/facebook-replies-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

facebook-replies-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Facebook Threads Replies API
  description: Publish and manage content on Threads, Meta's text-based social platform. Create posts and carousels, retrieve and moderate replies, access insights, and manage creator profiles.
  version: '1.0'
  contact:
    name: Meta Platforms
    url: https://developers.facebook.com
  x-generated-from: documentation
  x-last-validated: '2026-04-18'
servers:
- url: https://graph.threads.net/v1.0
  description: Threads API v1.0
security:
- BearerAuth: []
tags:
- name: Replies
paths:
  /{threads-media-id}/replies:
    get:
      operationId: getThreadsReplies
      summary: Facebook Get Threads Replies
      description: Retrieve replies to a Threads post.
      tags:
      - Replies
      parameters:
      - name: threads-media-id
        in: path
        required: true
        description: The Threads media ID.
        schema:
          type: string
        example: '98765432101234567'
      responses:
        '200':
          description: Replies retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThreadsMediaList'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ThreadsMediaList:
      type: object
      description: List of Threads media.
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ThreadsMedia'
    ThreadsMedia:
      type: object
      description: A Threads post.
      properties:
        id:
          type: string
          description: Media ID.
          example: '98765432101234567'
        media_type:
          type: string
          description: Media type.
          enum:
          - TEXT_POST
          - IMAGE
          - VIDEO
          - CAROUSEL_ALBUM
          example: TEXT_POST
        text:
          type: string
          description: Post text content.
          example: Hello Threads!
        permalink:
          type: string
          format: uri
          description: Permanent URL to the post.
        timestamp:
          type: string
          format: date-time
          description: Publishing timestamp.
        username:
          type: string
          description: Author username.
          example: examplebrand
        is_quote_post:
          type: boolean
          description: Whether this is a quote post.
          example: false
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Threads OAuth 2.0 access token.