action medium_get_top_writer_topic_slug { label: "Get Top Writers" description: "Returns a list of top writers (`user_ids`) within a particular topic/niche (`topic_slug`). \ne.g. \n- blockchain\n- relationships\n- artificial-intelligence, etc ...\n\n**Note:** You can use optional `count` query parameter to limit the number of results. The maximum number of top writers within a topic/niche will be 250.\n" provider: medium method: GET path: "/top_writer/{topic_slug}" encoding: json input: { type: "object" properties: { count: { type: "integer" } topic_slug: { type: "string" } } required: ["topic_slug"] additionalProperties: false } output: { type: "object" properties: { top_writers: { type: "array" items: { type: "string" } } } } }