get_threads_posts
Retrieve posts from any Threads user by providing their username to access their content and engagement data.
Instructions
Get posts from a Threads user
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| handle | Yes | Threads username | 
Input Schema (JSON Schema)
{
  "properties": {
    "handle": {
      "description": "Threads username",
      "type": "string"
    }
  },
  "required": [
    "handle"
  ],
  "type": "object"
}