Hunt HttpClient is a tool library for sending HTTP requests to Web service communications. provides a very good development experience for developers.
string content = Http.get("http://api.example.com/user/1").content();
writeln(content);
auto response = Http.post("http://api.example.com/auto",
["username": "admin", "password": "hunt@@2020"]);
string content = response.content();
writeln(content);