API Reference

Threads endpoints

Profile and post metrics. These endpoints depend on an authenticated source pool, so availability can vary.

All 2 endpoints below take a single url parameter and return the same field vocabulary used across every platform. A full object costs 2 credits; a single field costs 1.
GET /api/v1/threads/profile
2 credits cache 1m

Threads profile

Follower and following counts for a Threads account.

Parameters

url required
Example: https://www.threads.com/@username
field optional
Return a single value for 1 credit instead of 2.

Fields

userId · username · fullName · followers · following · verified · private

Example request

curl -H "Authorization: Bearer $TUBESTAT_KEY" \
  "https://tubestat.co/api/v1/threads/profile?url=https%3A%2F%2Fwww.threads.com%2F%40username"
GET /api/v1/threads/post
2 credits cache 1m

Threads post

Like, reply, repost, quote and view counts for a Threads post.

Parameters

url required
Example: https://www.threads.com/@username/post/POST_ID
field optional
Return a single value for 1 credit instead of 2.

Fields

postId · code · authorId · authorName · likes · replies · reposts · quotes · shares · views · countsHidden

Example request

curl -H "Authorization: Bearer $TUBESTAT_KEY" \
  "https://tubestat.co/api/v1/threads/post?url=https%3A%2F%2Fwww.threads.com%2F%40username%2Fpost%2FPOST_ID"