pricing background

Node Js API Integration for Ip Whois API

api

IP

fetch("https://api.whoisfreaks.com/v1.0/ip-whois?apiKey=API_KEY&ip=8.8.8.8", {
  method: "GET",
})
  .then(res => res.text())
  .then(console.log)
  .catch(console.error);