action medium_get_list_list_id { label: "Get List Info" description: "Returns the list-related information such as *id, name, author, description, thumbnail image url, creation datetime, last article inserted datetime, number of articles in the list, claps, voters, and comments/responses*.\n" provider: medium method: GET path: "/list/{list_id}" encoding: json input: { type: "object" properties: { list_id: { type: "string" } } required: ["list_id"] additionalProperties: false } output: { type: "object" properties: { author: { type: "string" description: "`user_id` of the author" } claps: { type: "integer" format: "int32" } count: { type: "integer" format: "int32" description: "Number of articles in the list" } created_at: { type: "string" } description: { type: "string" } id: { type: "string" } last_item_inserted_at: { type: "string" } name: { type: "string" } responses_count: { type: "integer" format: "int32" } thumbnail: { type: "string" description: "Image URL" } voters: { type: "integer" format: "int32" } } } }