package main import ( "fmt" "io/ioutil" "net/http" ) func main() { res, _ := http.Get("https://jsonplaceholder.typicode.com/todos/1") body, _ := ioutil.ReadAll(res.Body) raw := string(body) fmt.Println(raw) }