Threads API docs

Threads API: Posts — summary by post ID

Retrieve aggregate Posts metrics from Threads without calculating them from a full object collection.

Use “summary by post ID” for dashboards, scoring, and recurring reports that need a compact metric snapshot.

Method GET
Entity Posts
Versions 2
What this endpoint does

What you can build with this API method

Review the result and common workflows first, then move to parameters and a working request example.

What this endpoint helps with

The response provides a ready-to-use Posts summary with key counters and metrics in the selected API format.

When to use it

Use “summary by post ID” for dashboards, scoring, and recurring reports that need a compact metric snapshot.

Common use cases

Product dashboards

Show core Threads metrics without loading and processing an entire collection.

Trend monitoring

Store periodic snapshots and compare metric changes over time.

Object scoring

Use aggregate metrics as inputs for internal rankings and rules.

Available versions

Response version

Both versions solve the same job and accept the same parameters. Use the switch to compare the response structure and choose the version your client expects.

Response version V2

Switch versions on this page to compare response structures while keeping the same documentation URL.

What stays the same

Authentication, required parameters, and the request shape stay the same across V1 and V2. In practice, you choose the version when you build the endpoint path and when you parse the response.

What changes between versions

The main difference is the response envelope. Use V2 for new integrations and keep V1 only when you need compatibility with an existing client contract.

How to use it

How to call the method

Use the same API key header and the same query parameters for both versions. This documentation shows the shared parameter set first, then version-specific endpoint paths and code snippets.

Input parameters

Shared parameters
Parameter Required Type Example Description
media_id Yes str 25025320 Numeric ID of the Instagram post whose data you want to retrieve.

Version-specific request path

V2

Choose a version when you copy the exact endpoint path, example URL, and code snippet. The parameter list above stays the same.

GET /api/v2/threads.net/posts/summary-by-media-id

Normalized format

Code examples

curl --request GET \
  --url "https://www.scrapestorm.net/api/v2/threads.net/posts/summary-by-media-id" \
  --header "X-API-Key: 00000000-0000-4000-8000-000000000000" \
  --get --data-urlencode 'media_id=25025320'
Response example

Live response by version

The preview keeps key fields and the first collection items so you can scan the response shape quickly. Switching versions changes the JSON format.

Response example

V2 response JSON

Verified example

This compact JSON example comes from the latest successful verification run for V2.

{
  "success": true,
  "status": "ok",
  "search_context": {
    "media_id": "3930411590831195931"
  },
  "data": {
    "content_item": {
      "owner": {
        "user_id": "63404918397",
        "username": "instagram",
        "name": "Instagram",
        "is_verified": true,
        "avatar_url": null
      },
      "media_id": "3930411590831195931_63404918397",
      "created_at": "2026-06-29T19:33:34Z",
      "type": "video",
      "media_type": 2,
      "shortcode": "DaLoISEkkcb",
      "caption": "fashion meets architecture 🏠✨\n\n🎥: Jasmine Archie",
      "hashtags": [],
      "emails": [],
      "is_reply": false,
      "is_sponsored": null,
      "sponsored_detection_source": null,
      "sponsored_detection_confidence": null,
      "is_post_unavailable": false,
      "engagement": {
        "likes_count": null,
        "comment_count": 25,
        "repost_count": 15,
        "quote_count": 0,
        "reshare_count": 12,
        "view_count": null
      },
      "assets": [
        {
          "id": "3930411590831195931_63404918397",
          "type": "video",
          "url": "https://scontent-ord5-2.cdninstagram.com/o1/v/t16/f2/m84/AQOEhvKMSx3zF3q00u9Gsy-tmkRYyI3HPmElokt56eSpEywg3LgfHyWuPux6c_C-i4yjOmXSa6OtnImSlhqe4MVW2C8be2VtO_NoUH8.mp4?_nc_cat=103&…",
          "height": 1280,
          "width": 720,
          "accessibility_caption": null
        }
      ]
    }
  }
}
What to do next

Continue the evaluation

Use this documentation as the first decision point, then move into pricing, platform coverage, and integration rules before you connect the endpoint for recurring use.

Open the Threads platform page

Compare adjacent entities, API method groups, and related docs before implementation.

Open platform page

Compare API method pricing

Check where this API method sits inside the public price table before you scale usage.

View pricing

Review integration rules

Use the starter docs to confirm authentication, versioning, retries, and mock vs live behavior.

Open docs
FAQ

Questions teams ask before implementation

Use these answers to decide whether this API method fits your workflow, versioning choice, and rollout plan.

What data does this Threads API method return?

The method performs “summary by post ID” for Posts. The compact response example below shows the exact field structure.

Should I choose V1 or V2?

Choose V2 for new integrations because it provides a normalized structure. Use V1 only for compatibility with clients that already consume the platform-native format.

What do I need for the first request?

Create an API key, send it in the request header, and provide the required parameters from the table. The code samples already contain the correct path and request structure.