action medium_get_latestposts_topic_slug { label: "Get Latest Posts" description: "Returns a list of latest posts (`article_ids`) for a topic/niche (as classified by the Medium platform). Example of a topic/niche can be:\n* blockchain\n* relationships\n* mental-health, etc …\n\nThese are known as `topic_slugs`. At any given moment, this endpoint will return a list of 25 articles (`article_ids`).\n" provider: medium method: GET path: "/latestposts/{topic_slug}" encoding: json input: { type: "object" properties: { topic_slug: { type: "string" } } required: ["topic_slug"] additionalProperties: false } output: { type: "object" properties: { latestposts: { type: "array" items: { type: "string" } } } } }