action medium_get_article_article_id_content { label: "Get Article's Content" description: "Returns the content of an article/story, for the corresponding `article_id`\n" provider: medium method: GET path: "/article/{article_id}/content" encoding: json input: { type: "object" properties: { article_id: { type: "string" } } required: ["article_id"] additionalProperties: false } output: { type: "object" properties: { content: { type: "string" } } } }