get-trending-topics
Retrieve trending topics from social platforms like Farcaster, Twitter, and Telegram to analyze popular conversations and trends. Specify platform and limit for tailored results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of trending topics to return | |
platform | Yes | Social platform (farcaster, twitter, telegram) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of trending topics to return",
"type": "number"
},
"platform": {
"description": "Social platform (farcaster, twitter, telegram)",
"type": "string"
}
},
"required": [
"platform"
],
"type": "object"
}