Get posts from a specific Threads profile.
Endpoint
/v1/threads/profiles/{handle}/posts
Path
Threads handle whose posts should be listed.
Query
When true, returns a smaller response with fewer post fields when available.
const response = await fetch( "https://api.socialfetch.dev/v1/threads/profiles/charlidamelio/posts", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);