package main
import (
  "fmt"
  "net/http"
  "io"
)
func main() {
  url := "https://deep-index.moralis.io/api/v2.2/nft/0x524cab2ec69124574082676e6f654a18df49a048/traits?chain=eth"
  req, _ := http.NewRequest("GET", url, payload)
  req.Header.Add("Accept", "application/json")
  req.Header.Add("X-API-Key", "YOUR_API_KEY")
  res, _ := http.DefaultClient.Do(req)
  defer res.Body.Close()
  body, _ := io.ReadAll(res.Body)
  fmt.Println(res)
  fmt.Println(string(body))
}