action mastodon_get_api_v1_trends { label: "get_api_v1_trends" description: "Tags that are being used more frequently within the past week." provider: mastodon method: GET path: "/api/v1/trends" encoding: json input: { type: "object" properties: { limit: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { description: "Represents a hashtag used within the content of a status." required: ["name", "url"] properties: { history: { type: "array" description: "Usage statistics for given days." items: { description: "Represents daily usage history of a hashtag." required: ["day", "uses", "accounts"] properties: { accounts: { type: "string" description: "the total of accounts using the tag within that day. Cast from an integer." } day: { type: "string" description: "UNIX timestamp on midnight of the given day." } uses: { type: "string" description: "the counted usage of the tag within that day. Cast from an integer." } } } } name: { type: "string" description: "The value of the hashtag after the `#` sign." } url: { type: "string" description: "A link to the hashtag on the instance." } } } } }