action medium_get_article_article_id { label: "Get Article Info" description: "Returns the article related information such as *Title, Subtitle, Tags, Topics* (assigned by Medium), *Publication, Published date and time, Clap Count, Voter Count, Word Count, Reading Time, Language, etc…*\n" provider: medium method: GET path: "/article/{article_id}" encoding: json input: { type: "object" properties: { article_id: { type: "string" } } required: ["article_id"] additionalProperties: false } output: { type: "object" properties: { author: { type: "string" } claps: { type: "integer" format: "int32" } id: { type: "string" } image_url: { type: "string" } is_locked: { type: "boolean" } is_series: { type: "boolean" } lang: { type: "string" } last_modified_at: { type: "string" } publication_id: { type: "string" } published_at: { type: "string" } reading_time: { type: "number" } responses_count: { type: "integer" format: "int32" } subtitle: { type: "string" } tags: { type: "array" items: { type: "string" } } title: { type: "string" } topics: { type: "array" items: { type: "string" } } url: { type: "string" } voters: { type: "integer" format: "int32" } word_count: { type: "integer" format: "int32" } } } }