action mastodon_get_api_v1_featured_tags { label: "get_api_v1_featured_tags" description: "View your featured tags." provider: mastodon method: GET path: "/api/v1/featured_tags" encoding: json output: { type: "array" items: { description: "Represents a hashtag that is featured on a profile." properties: { id: { type: "string" description: "The internal ID of the featured tag in the database. Cast from integer but not guaranteed to be a number" } last_status_at: { type: "string" format: "date-time" description: "The timestamp of the last authored status containing this hashtag. ISO 8601 Datetime." } name: { type: "string" description: "The name of the hashtag being featured." } statuses_count: { type: "integer" description: "The number of authored statuses containing this hashtag." } url: { type: "string" description: "A link to all statuses by a user that contain this hashtag." } } } } }