action medium_get_article_article_id_related { label: "Get Related Articles" description: "Returns a list of `article_ids` of the related posts. (Length = 5)\n\n**Note:** If the given article is self-published, related posts will belong to the same author, else related posts will belong to the publication in which the article is published.\n" provider: medium method: GET path: "/article/{article_id}/related" encoding: json input: { type: "object" properties: { article_id: { type: "string" } } required: ["article_id"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" } related_articles: { type: "array" items: { type: "string" } } } } }