New to Claude Skills? Learn how to install them →

browser-act on GitHub

Threads Keyword Search

Free

Easily search and extract Threads posts by keyword or hashtag.

Get this skill

Free · Opens the source repo

What Threads Keyword Search does

The Threads Keyword Search skill allows users to efficiently search for posts on the Threads platform using specific keywords or hashtags. By leveraging server-side rendered (SSR) JSON data embedded in the search results, this skill retrieves posts that match the user's query and provides engagement metrics such as likes, replies, and reposts. This capability is particularly useful for individuals or businesses looking to monitor conversations, track trending topics, or gather insights from social media interactions.

To use this skill, users simply need to input their desired keyword or hashtag and specify whether they want to see the most relevant or the most recent posts. The skill navigates to the appropriate search page, extracts the relevant data, and formats it into a structured output. This makes it easy to analyze the performance of specific topics or to gather content for further engagement or reporting.

This skill is ideal for social media managers, marketers, researchers, and anyone interested in gaining insights from Threads posts. By automating the search process, users can save time and focus on interpreting the results rather than manually sifting through posts. Additionally, the engagement metrics provided can help users understand the impact of their content or the popularity of certain discussions.

However, it is important to note that the skill operates under certain limitations, such as a cap on the number of results returned per query and the inability to paginate through search results without authentication. Users should also be aware that private accounts may restrict access to full post content, and there may be a lag in the search index for very new posts. Despite these limitations, the Threads Keyword Search skill provides a powerful tool for extracting valuable insights from social media data.

When to use it

Use this skill when you need to find specific Threads content related to a topic or track hashtag activity.

When not to use it

This skill is not suitable for users needing extensive pagination or access to private account posts.

What you can build with it

Tracking Trending Topics

Use the skill to monitor trending hashtags on Threads, helping you stay updated on popular discussions.

Content Gathering for Analysis

Extract posts related to specific keywords for content analysis or reporting purposes.

Engagement Metrics for Marketing

Analyze engagement metrics from Threads posts to inform your marketing strategies and content creation.

How to install Threads Keyword Search

View source

1. Install with the skills CLI

npx skills add browser-act/skills/threads-keyword-search --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by browser-act

Threads — Keyword & Hashtag Search

keyword + sort filter → list of matching posts with engagement metrics

Language

All process output to user (progress updates, process notifications) follows the user's language.

Objective

Search Threads for posts matching a keyword or hashtag and extract the results from SSR-embedded JSON, with support for top/recent sort ordering.

Prerequisites

  • A browser is open and connected via browser-act
  • No login required for public search results (unauthenticated: typically 17-18 results per query, no pagination)

Pre-execution Checks

1. Tool Readiness

If browser-act has been confirmed available in the current session → skip this step.

Invoke browser-act via Skill tool to load usage. If installation or configuration issues arise, follow its guidance to resolve then retry.

Capability Components

This Skill's operational boundary = what the user can manually do in their browser. It only reads data already displayed to the user on the page. JS code is encapsulated in Python files under the scripts/ directory, invoked via eval "$(python scripts/xxx.py {params})". $(...) is bash syntax; it is recommended to use the bash tool for execution.

SSR: Extract keyword search results

Navigate to the search page with the keyword and sort filter, then extract all results embedded in the initial HTML:

  1. navigate https://www.threads.com/search/?q={keyword}&serp_type={filter}
    • {keyword}: URL-encoded search term or hashtag (e.g., AI or %23AI for #AI)
    • {filter}: top (default, most relevant) or recent (chronologically newest)
  2. wait stable
  3. eval "$(python scripts/extract-search-results.py '{keyword}' --filter {filter})"

Output example:

{
  "keyword": "AI",
  "filter": "top",
  "posts": [
    {
      "id": "3936653356768062022",          // post internal ID (pk)
      "code": "DZyvcdEl-W1",               // post short code for URL
      "url": "https://www.threads.com/@flower_popy/post/DZyvcdEl-W1",
      "text": "AI is changing everything...", // post text content, null if no caption
      "taken_at": 1781926571,              // Unix timestamp of post creation
      "like_count": 34,                    // number of likes
      "reply_count": 6,                    // number of direct replies
      "repost_count": 0,                   // number of reposts
      "quote_count": 0,                    // number of quote posts
      "is_reply": false,                   // true if this post is a reply
      "media_type": 19,                    // 1=photo, 2=video, 8=carousel, 19=text-only
      "has_media": false,                  // true if post contains image/video/carousel
      "user": {
        "pk": "14803522782",
        "username": "flower_popy",
        "full_name": "Flower",
        "is_verified": false
      }
    }
  ],
  "count": 17,
  "page_info": {
    "end_cursor": null,
    "has_next_page": false,
    "has_previous_page": false,
    "start_cursor": null
  }
}

Error handling: If error: true is returned, check that the search page loaded correctly by verifying the URL contains the query parameter. If searchResults not found, the page may have failed to render SSR data — retry navigate and wait stable once. If count: 0, no posts matched the keyword.

SSR: Hashtag search

Hashtag search uses the same URL pattern. Prefix keyword with #:

  1. navigate https://www.threads.com/search/?q=%23{hashtag}&serp_type={filter}
    • Example: %23AI for #AI
  2. wait stable
  3. eval "$(python scripts/extract-search-results.py '#AI' --filter top)"

The # prefix in the keyword argument is for labeling only; the URL encoding %23 is what Threads uses to identify hashtag searches.

Enum Parameters

[DOM] filter — values: top (most relevant/popular posts), recent (newest posts first). Set via --filter argument and serp_type URL parameter.

Pagination

Pagination is not available for unauthenticated access on the search endpoint (has_next_page: false is returned regardless of result volume). Results are limited to approximately 17-18 posts per query without login. For broader coverage, run multiple searches with related keywords.

Success Criteria

result.count >= 1 and result.posts[0].id != null and result.posts[0].user.username != null

Known Limitations

  • Unauthenticated access: no pagination; approximately 17-18 results per keyword
  • Date filtering is not supported as a URL parameter; filter by taken_at (Unix timestamp) client-side after extraction
  • Private account posts may appear in search results but their full content may be restricted
  • Search index may not include very new posts (lag of minutes to hours)

Execution Efficiency

  • Batch orchestration: Write a bash script to loop keywords serially within a single session. Add 1-2 second intervals between searches. For higher throughput, distribute keywords across multiple parallel browser sessions.
  • Test before batch execution: Test with 1-2 keywords first before running full batch.
  • Reduce redundant pre-operations: Each keyword requires a fresh navigate to the search URL — the search parameters are baked into the URL.
  • Error resumption: Save results per keyword; on failure, resume from the breakpoint.

Experience Notes

Path: {working-directory}/browser-act-skill-forge-memories/threads-scraper-threads-keyword-search.memory.md

Before execution: If the file exists, read it first — it records unexpected situations encountered during past executions; adjust strategy order accordingly.

After execution: If an unexpected situation is encountered (strategy became ineffective, page redesigned, anti-scraping upgraded, better path discovered), append a line: {YYYY-MM-DD}: {what happened} → {conclusion}

Normal execution does not write to the file. Do not record what keywords were used or how many results were returned — those are task outputs, not experience.

Frequently asked questions about Threads Keyword Search

Similar skills