get-thread
Extract threads or conversations from social platforms (Farcaster, Twitter, Telegram) using a specific thread ID to access and analyze structured data for LLM workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
platform | Yes | Social platform (farcaster, twitter, telegram) | |
threadId | Yes | Thread or conversation ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"platform": {
"description": "Social platform (farcaster, twitter, telegram)",
"type": "string"
},
"threadId": {
"description": "Thread or conversation ID",
"type": "string"
}
},
"required": [
"platform",
"threadId"
],
"type": "object"
}