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
Try it
Make your first request
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 30dPOST /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"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "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 | ||
| data | object | The post record, or null when nothing was found. |
| data.code | string | Threads post shortcode. |
| data.createdUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.fullName | string | Display name of the author. Populated whenever the provider has data for the entity. |
| data.id | string | Post identifier. Populated whenever the provider has data for the entity. |
| data.likeCount | integer | Number of likes on the post. |
| data.quoteCount | integer | Number of quote posts. |
| data.replyCount | integer | Number of replies to the post. |
| data.repostCount | integer | Number of reposts of the post. |
| data.text | string | Post text content. Populated whenever the provider has data for the entity. |
| data.username | string | Username of the author. Populated whenever the provider has data for the entity. |
| found | boolean | True when the post was found; false when the lookup returned nothing. |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $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.