action dev_get_tags { label: "Tags" description: "This endpoint allows the client to retrieve a list of tags that can be used to tag articles.\n\nIt will return tags ordered by popularity.\n\nIt supports pagination, each page will contain 10 tags by default." provider: dev method: GET path: "/api/tags" encoding: json output: { type: "array" items: { type: "object" description: "Representation of a tag" properties: { bg_color_hex: { type: "string" } id: { type: "integer" format: "int64" description: "Tag id" } name: { type: "string" } text_color_hex: { type: "string" } } } } }