Threads Troubleshooting API

This folder will enbale you to perform basic toubleshooting.

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/threads-api-troubleshooting-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 email required.

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

OpenAPI Specification

threads-api-troubleshooting-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Threads Authorization Troubleshooting API
  description: The Threads API enables developers to build their own unique integrations, and helps creators and brands manage their Threads presence at scale and easily share inspiring content with their communities.
  version: 1.0.0
servers:
- url: http://{{api_host}}
security:
- oauth2Auth: []
tags:
- name: Troubleshooting
  description: This folder will enbale you to perform basic toubleshooting.
paths:
  /{container_id}/:
    get:
      tags:
      - Troubleshooting
      summary: Check Container's Publishing Status
      description: Use `POST` /{threads-user-id}/threads_publish [endpoint](https://developers.facebook.com/docs/threads/troubleshooting#publishing-does-not-return-a-media-id) to check a container's publishing status.
      parameters:
      - name: fields
        in: query
        schema:
          type: string
        description: 'EXPIRED  The container was not published within 24 hours and has expired.

          ERROR  The container failed to complete the publishing process.

          FINISHED  The container and its media object are ready to be published.

          IN_PROGRESS  The container is still in the publishing process.

          PUBLISHED  The container''s media object has been published.

          '
        example: '{{fields_container}}'
      - name: container_id
        in: path
        schema:
          type: string
        required: true
      responses:
        undefined:
          content:
            text/plain:
              schema:
                type: string
              example: "{\n    \"id\": \"string\",\n    \"status\": \"FINISHED\"\n}"
  /me/threads_publishing_limit:
    get:
      tags:
      - Troubleshooting
      summary: Retrieve Publishing Quota Limit
      description: Use `GET` /threads_publishing_limit [endpoint](https://developers.facebook.com/docs/threads/troubleshooting#retrieve-publishing-quota-limit) to check a user's publishing API quota limit.
      parameters:
      - name: fields
        in: query
        schema:
          type: string
        description: user's current Threads API usage total.
        example: '{{fields_quota}}'
      responses:
        undefined:
          content:
            text/plain:
              schema:
                type: string
              example: "{\n    \"data\": [\n        {\n            \"quota_usage\": 1,\n            \"config\": {\n                \"quota_total\": 250,\n                \"quota_duration\": 86400\n            },\n            \"reply_quota_usage\": 0,\n            \"reply_config\": {\n                \"quota_total\": 1000,\n                \"quota_duration\": 86400\n            }\n        }\n    ]\n}"
components:
  securitySchemes:
    noauthAuth:
      type: http
      scheme: noauth
    oauth2Auth:
      type: http
      scheme: oauth2