action medium_get_topfeeds_tag_mode { label: "Get Topfeeds" description: "Returns a list of `article_ids` (length: 25) for the given `tag` and `mode`.\n" provider: medium method: GET path: "/topfeeds/{tag}/{mode}" encoding: json input: { type: "object" properties: { after: { type: "integer" } count: { type: "integer" } mode: { type: "string" } tag: { type: "string" } } required: ["mode", "tag"] additionalProperties: false } output: { type: "object" properties: { topfeeds: { type: "array" items: { type: "string" } } } } }