Logo
Logo

PRODUCTS

TOOLS

pricing background

Node JsAPI Integration

api

Security Lookup

1fetch("https://api.whoisfreaks.com/v1.0/security?apiKey=API_KEY&ip=8.8.8.8", {
2  method: "GET",
3})
4  .then(res => res.text())
5  .then(console.log)
6  .catch(console.error);

Bulk Security Lookup

1fetch("https://api.whoisfreaks.com/v1.0/security?apiKey=API_KEY", {
2  method: "POST",
3  headers: {
4    "Content-Type": "application/json",
5  },
6  body: JSON.stringify({"ips":["1.1.1.1","2.2.2.2","8.8.8.8"]}),
7})
8  .then(res => res.text())
9  .then(console.log)
10  .catch(console.error);