get-trends
Discover current trending topics on Bluesky by fetching a customizable number of results, optionally including suggested topics for comprehensive insights.
Instructions
Get current trending topics on Bluesky
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeSuggested | No | Whether to include suggested topics in addition to trending topics | |
limit | No | Number of trending topics to fetch (1-50) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeSuggested": {
"default": false,
"description": "Whether to include suggested topics in addition to trending topics",
"type": "boolean"
},
"limit": {
"default": 10,
"description": "Number of trending topics to fetch (1-50)",
"maximum": 50,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}