action dev_get_followed_tags { label: "Followed Tags" description: "This endpoint allows the client to retrieve a list of the tags they follow." provider: dev method: GET path: "/api/follows/tags" encoding: json output: { type: "array" items: { type: "object" description: "Representation of a followed tag" required: ["id", "name", "points"] properties: { id: { type: "integer" format: "int64" description: "Tag id" } name: { type: "string" } points: { type: "number" format: "float" } } } } }