use reqwest; type Response = Vec; fn main() { let res = reqwest::blocking::get("https://reservation.affluences.com/api/resources/026b8caa-d310-464f-b714-4c21a2cf98ea/available?date=2023-05-11&type=1").unwrap().json::().unwrap(); println!("{:?}", res); }