Threads User posts API
List a Threads user's recent public posts by username: text, engagement counts, and post URLs.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"data": {
"posts": [
{
"code": "a1b2c3d4",
"createdUtc": 12.5,
"id": "a1b2c3d4",
"likeCount": 12500,
"quoteCount": 12500,
"replyCount": 12500,
"repostCount": 12500,
"text": "A short example description of this item.",
"url": "https://example.com/page",
"username": "alex_rivera"
}
]
},
"found": true
}interface ThreadsUserPostsResponse {
data: {
posts: {
code: string;
createdUtc: number;
id: string;
likeCount: number;
quoteCount: number;
replyCount: number;
repostCount: number;
text: string;
url: 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 30dcurl -X POST https://api.getanyapi.com/v1/run/threads.user_posts \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"handle":"trendspider"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| handle | string | "trendspider"The Threads username to list posts for, without the @ prefix. |
| Response | ||
| data | object | Wrapper holding the posts array, or null when nothing was found. |
| data.posts | object[] | The user's recent posts. Populated whenever the provider has data for the entity. |
| data.posts[].code | string | Threads post shortcode. |
| data.posts[].createdUtc | number | UTC epoch timestamp in seconds (Unix time). Multiply by 1000 for a JS Date in milliseconds. |
| data.posts[].id | string | Post identifier. Populated whenever the provider has data for the entity. |
| data.posts[].likeCount | integer | Number of likes on the post. |
| data.posts[].quoteCount | integer | Number of quote posts. |
| data.posts[].replyCount | integer | Number of replies to the post. |
| data.posts[].repostCount | integer | Number of reposts of the post. |
| data.posts[].text | string | Post text content. Populated whenever the provider has data for the entity. |
| data.posts[].url | string | Canonical URL of the post. Populated whenever the provider has data for the entity. |
| data.posts[].username | string | Username of the author. Populated whenever the provider has data for the entity. |
| found | boolean | True when the user's posts were found; false when the lookup returned nothing. |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
FAQ
About the Threads User posts API
The AnyAPI Threads User posts API returns Threads user posts data as normalized JSON from one POST call to /v1/run/threads.user_posts. List a Threads user's recent public posts by username: text, engagement counts, and post URLs. 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. Over the last 30 days, 100.0% of Threads user posts calls through AnyAPI succeeded, with a median response time of 5.2 seconds across 6 measured calls.