All URIs are relative to https://api.whoisfreaks.com
| Method | HTTP request | Description |
|---|---|---|
| bulkIpReputation | POST /v1.0/security | Bulk IP Reputation |
| ipReputation | GET /v1.0/security | IP Reputation Lookup |
[IpReputationResponse] bulkIpReputation(bulkGeolocationRequest)
Bulk IP Reputation
Up to 100 IPs.
import WhoisFreaks from 'whoisfreaks';
let defaultClient = WhoisFreaks.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';
let apiInstance = new WhoisFreaks.IPReputationApi();
let bulkGeolocationRequest = new WhoisFreaks.BulkGeolocationRequest(); // BulkGeolocationRequest |
apiInstance.bulkIpReputation(bulkGeolocationRequest).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| bulkGeolocationRequest | BulkGeolocationRequest |
- Content-Type: application/json
- Accept: application/json
IpReputationResponse ipReputation(ip)
IP Reputation Lookup
Threat intel for IP — VPN, proxy, Tor, bots. 1 credit.
import WhoisFreaks from 'whoisfreaks';
let defaultClient = WhoisFreaks.ApiClient.instance;
// Configure API key authorization: ApiKeyAuth
let ApiKeyAuth = defaultClient.authentications['ApiKeyAuth'];
ApiKeyAuth.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.apiKeyPrefix = 'Token';
let apiInstance = new WhoisFreaks.IPReputationApi();
let ip = "ip_example"; // String |
apiInstance.ipReputation(ip).then((data) => {
console.log('API called successfully. Returned data: ' + data);
}, (error) => {
console.error(error);
});| Name | Type | Description | Notes |
|---|---|---|---|
| ip | String |
- Content-Type: Not defined
- Accept: application/json