Threads API

Threads Post API

Fetch a single Threads post by URL: text, author, engagement counts, and timestamp.

POST/v1/run/threads.post
Requests
-
30d

Provider network

Providers ranked by traffic

Providers
Fox- served- uptime- p50-$3.60/1k reqflatGiraffeTried first- served- uptime- p50-$1.20/1k reqflat

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "code": "a1b2c3d4",
    "createdUtc": 12.5,
    "fullName": "Alex Rivera",
    "id": "a1b2c3d4",
    "likeCount": 12500,
    "quoteCount": 12500,
    "replyCount": 12500,
    "repostCount": 12500,
    "text": "A short example description of this item.",
    "username": "alex_rivera"
  },
  "found": true
}
Response interface
interface ThreadsPostResponse {
  data: {
    code: string;
    createdUtc: number;
    fullName: string;
    id: string;
    likeCount: number;
    quoteCount: number;
    replyCount: number;
    repostCount: number;
    text: string;
    username: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/threads.post
curl -X POST https://api.getanyapi.com/v1/run/threads.post \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.threads.com/@aaronparnas/post/DZxPYVFkYSq"}'
FieldTypeExample value
Request body
urlstring"https://www.threads.com/@aaronparnas/post/DZxPYVFkYSq"The full URL of the Threads post to fetch (e.g. https://www.threads.com/@zuck/post/C8yKXdRxKqK).
Response
dataobjectThe post record, or null when nothing was found.
data.codestringThreads post shortcode.
data.createdUtcnumberUTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds.
data.fullNamestringDisplay name of the author. Populated whenever the provider has data for the entity.
data.idstringPost identifier. Populated whenever the provider has data for the entity.
data.likeCountintegerNumber of likes on the post.
data.quoteCountintegerNumber of quote posts.
data.replyCountintegerNumber of replies to the post.
data.repostCountintegerNumber of reposts of the post.
data.textstringPost text content. Populated whenever the provider has data for the entity.
data.usernamestringUsername of the author. Populated whenever the provider has data for the entity.
foundbooleanTrue when the post was found; false when the lookup returned nothing.
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the Threads Post API

The AnyAPI Threads Post API returns Threads post data as normalized JSON from one POST call to /v1/run/threads.post. Fetch a single Threads post by URL: text, author, engagement counts, and timestamp. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Fetch a single Threads post by URL: text, author, engagement counts, and timestamp. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.