Shorthand for generating a get request.
let response = http::get("http://worldtimeapi.org/api/ip").await?; let json = response.json().await?; let timezone = json["timezone"];