Social
Threads logo

Threads API

threads.com

Threads - account search, profiles, posts, replies, and logged-out feed.

Actions
9
Category
Social
Login
Not required
Output
JSON

Call the Threads API

Submit a task, then poll the job until it settles. This example runs act_threads_com_account_search_results.

curl -X POST https://api.anakin.io/v1/wire/task \
  -H "X-API-Key: $ANAKIN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "action_id": "act_threads_com_account_search_results",
    "params": {
      "search_keyword": "startup"
    }
  }'

9 actions on threads.com

Read

  • Home Feed

    act_threads_com_logged_out_feed_ssrread1 credit / call

    Returns the public home feed with thread previews and pagination cursors.

  • Profile by Username

    act_threads_com_profile_page_ssrread1 credit / call

    Returns a profile by username with display name, bio, follower count, and post stats.

    username
    string · required

Write

Write actions change state on threads.com and run as the account you connect.

  • Account Search

    act_threads_com_account_search_resultswrite2 credits / call

    Returns accounts matching a keyword with usernames, profile IDs, names, and pictures.

    search_keyword
    string · required
    first
    integer
  • Feed Pagination

    act_threads_com_logged_out_feed_paginationwrite2 credits / call

    Returns paginated public home feed posts with authors, text, and engagement counts.

    after
    string
    country_code
    string
    first
    integer
  • Profile Details

    act_threads_com_profile_detailwrite2 credits / call

    Returns full profile metadata by user ID including bio, follower count, verification, and links.

    user_id
    string · required
    can_see_feeds_tab
    boolean
  • Profile Posts

    act_threads_com_profile_threads_tabwrite2 credits / call

    Returns a profile's posts with post IDs, captions, like counts, and reply counts.

    user_id
    string · required
    first
    integer
  • Profile Replies

    act_threads_com_profile_replies_tabwrite2 credits / call

    Returns a profile's reply posts with post IDs, captions, and engagement counts.

    user_id
    string · required
    first
    integer
  • Profile Replies Pagination

    act_threads_com_profile_replies_paginationwrite2 credits / call

    Returns paginated profile reply posts with text and engagement counts.

    user_id
    string · required
    after
    string
    first
    integer
  • Thread Details

    act_threads_com_thread_detailwrite2 credits / call

    Returns a post's full detail including caption, like and reply counts, and nested replies.

    post_id
    string · required
    sort_order
    string

Threads API questions

Is there an API for Threads?
Threads does not offer a public data API for this, but Anakin Wire provides 9 maintained endpoints for threads.com. You call Anakin's REST API with an action ID and parameters and get structured JSON back; Anakin handles the browser, proxies, anti-bot, and parsing.
How do I scrape Threads data?
POST to https://api.anakin.io/v1/wire/task with your API key, the action ID, and its parameters, then poll GET /v1/wire/jobs/{id} until the job settles. There is nothing to install and no scraper to maintain — when threads.com changes its markup, Anakin updates the action.
Do I need a Threads account?
No. Every Threads action listed here runs anonymously — no account and no credentials required.
What does the Threads API cost?
Usage-based credits, charged per call and refunded automatically when a job fails. New accounts start with 300 free credits and no card. See anakin.io/pricing for the current rates.

More Social APIs

All Social sites