Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/72.252.198.25
import requests
import json
url = 'https://api.maltiverse.com/ip/72.252.198.25'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/72.252.198.25'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "15950 West Dixie Highway",
"as_name": "AS30689 FLOW",
"as_number": "30689",
"asn_cidr": "72.252.198.0/24",
"asn_country_code": "US",
"asn_date": "2005-01-19 00:00:00",
"asn_registry": "arin",
"blacklist": [
{
"count": 4,
"description": "HTTP Spammer",
"first_seen": "2021-01-13 15:49:22",
"labels": [
"malicious-activity"
],
"last_seen": "2021-04-12 10:26:36",
"source": "StopForumSpam.com"
}
],
"cidr": [
"72.252.0.0/16"
],
"city": "North Miami Beach",
"classification": "suspicious",
"country_code": "US",
"creation_time": "2021-01-13 15:49:22",
"email": [
"jalonso@columbus-networks.com",
"abuse@cwc.com",
"ipnoc@columbus-networks.com",
"daniel.herrera@cwc.com",
"dherrera@columbus-networks.com",
"rprudhomme@columbus.co",
"pautore@columbus-networks.com"
],
"ip_addr": "72.252.198.25",
"ip_version": 4,
"is_cdn": false,
"is_cnc": false,
"is_distributing_malware": false,
"is_hosting": false,
"is_iot_threat": false,
"is_known_attacker": false,
"is_known_scanner": false,
"is_mining_pool": false,
"is_open_proxy": false,
"is_sinkhole": false,
"is_tor_node": false,
"is_vpn_node": false,
"last_updated": "2017-03-08 00:00:00",
"location": {
"lat": 25.9843,
"lon": -80.2149
},
"modification_time": "2024-05-09 18:32:56",
"number_of_blacklisted_domains_resolving": 0,
"number_of_domains_resolving": 0,
"number_of_offline_malicious_urls_allocated": 0,
"number_of_online_malicious_urls_allocated": 0,
"number_of_whitelisted_domains_resolving": 0,
"postal_code": "33162",
"registrant_name": "Columbus Networks USA, Inc.",
"state": "FL",
"tag": [
"bot",
"abuse"
],
"type": "ip"
}