action medium_get_user_user_id { label: "Get User Info" description: "Returns user related information like *Full name, Bio, Followers count, Following count, Twitter username, Profile-image URL, User ID, etc...* \n\nIt takes `user_id` as the path parameter.\n\n**Note:** If you don't know the `user_id`, then you can get it from the endpoint\\\n'/user/id_for/{`username`}'.\n" provider: medium method: GET path: "/user/{user_id}" encoding: json input: { type: "object" properties: { user_id: { type: "string" } } required: ["user_id"] additionalProperties: false } output: { type: "object" properties: { allow_notes: { type: "boolean" } bio: { type: "string" } followers_count: { type: "integer" format: "int32" } following_count: { type: "integer" format: "int32" } fullname: { type: "string" } has_list: { type: "boolean" } id: { type: "string" } image_url: { type: "string" } is_book_author: { type: "boolean" } is_suspended: { type: "boolean" } is_writer_program_enrolled: { type: "boolean" } medium_member_at: { type: "string" } top_writer_in: { type: "array" items: { type: "string" } } twitter_username: { type: "string" } username: { type: "string" } } } }