Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/46.242.242.69
import requests
import json
url = 'https://api.maltiverse.com/ip/46.242.242.69'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/46.242.242.69'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "home.pl S.A.\nZbozowa 4\n70-653 Szczecin\nPoland",
"as_name": "AS12824 Home.pl Webhosting Farm Static Allocation",
"as_number": "12824",
"asn_cidr": "46.242.128.0/17",
"asn_country_code": "PL",
"asn_date": "2010-12-27 00:00:00",
"asn_registry": "ripencc",
"blacklist": [
{
"count": 1,
"description": "Phishing Other",
"first_seen": "2020-03-27 02:59:29",
"last_seen": "2020-03-27 02:59:29",
"source": "Phishtank"
},
{
"count": 1,
"description": "Social Engineering",
"first_seen": "2020-03-27 02:55:41",
"labels": [
"malicious-activity"
],
"last_seen": "2020-03-27 02:55:41",
"source": "OpenPhish"
},
{
"count": 1,
"description": "Phishing Facebook, Inc.",
"first_seen": "2020-03-27 02:55:41",
"last_seen": "2020-03-27 02:55:41",
"source": "OpenPhish"
}
],
"cidr": [
"46.242.227.0/24",
" 46.242.228.0/22",
" 46.242.232.0/21",
" 46.242.240.0/20"
],
"city": "Warsaw",
"classification": "suspicious",
"country_code": "PL",
"creation_time": "2020-03-27 02:55:41",
"email": [
"abuse@home.pl"
],
"ip_addr": "46.242.242.69",
"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": "2019-07-17 16:50:00",
"location": {
"lat": 52.2296756,
"lon": 21.0122287
},
"modification_time": "2025-07-07 23:32:09",
"number_of_blacklisted_domains_resolving": 0,
"number_of_domains_resolving": 1,
"number_of_offline_malicious_urls_allocated": 0,
"number_of_online_malicious_urls_allocated": 0,
"number_of_whitelisted_domains_resolving": 0,
"postal_code": "00-110",
"registrant_name": "Home.pl Webhosting Farm Static Allocation",
"scoring_executed_time": "2025-07-07 23:32:09",
"tag": [
"phishing",
"sector:social networking",
"facebook, inc."
],
"type": "ip"
}