action medium_get_user_user_id_followers { label: "Get User Followers" description: "Returns the list of `user_ids` of the user's followers.\n\n**Note:** The length of this followers' list might be different from what you get in the \"Get User Info\" Endpoint. It's because, this list doesn't include Medium Users who left the platform.\nIf you really need the exact followers' count, use this endpoint to get the followers' list and take its length as the exact followers' count\n" provider: medium method: GET path: "/user/{user_id}/followers" encoding: json input: { type: "object" properties: { count: { type: "integer" } user_id: { type: "string" } } required: ["user_id"] additionalProperties: false } output: { type: "object" properties: { followers: { type: "array" items: { type: "string" } } id: { type: "string" } } } }