79248981

Date: 2024-12-03 19:44:59
Score: 2
Natty:
Report link
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
)

func main() {
  resp, _ := http.Get("https://api.ipquery.io/?format=json")
  body, _ := ioutil.ReadAll(resp.Body)
  fmt.Println(string(body))
}

From the IPQuery Docs

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lambda