Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/182.218.154.41
import requests
import json
url = 'https://api.maltiverse.com/ip/182.218.154.41'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/182.218.154.41'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "Jeollanam-do Naju-si Jinheung-gil",
"as_name": "AS17858 LG POWERCOMM",
"as_number": "17858",
"asn_cidr": "182.216.0.0/14",
"asn_country_code": "KR",
"asn_date": "2010-04-22 00:00:00",
"asn_registry": "apnic",
"blacklist": [
{
"count": 1,
"description": "Malicious Host",
"first_seen": "2021-01-13 20:55:45",
"labels": [
"malicious-activity"
],
"last_seen": "2021-03-09 00:03:11",
"source": "CIArmy"
},
{
"count": 1,
"description": "Mail Spammer",
"first_seen": "2021-01-13 20:55:46",
"last_seen": "2021-02-20 03:31:42",
"source": "Abuseat.org"
}
],
"cidr": [
"182.208.0.0/12",
" 182.224.0.0/13"
],
"city": "Yongsan-gu",
"classification": "suspicious",
"country_code": "KR",
"creation_time": "2021-01-13 20:55:45",
"email": [
"irt@nic.or.kr",
"ipadm@lguplus.co.kr"
],
"ip_addr": "182.218.154.41",
"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,
"location": {
"lat": 37.5359626,
"lon": 126.9710048
},
"modification_time": "2025-07-10 18:39:42",
"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": "04390",
"registrant_name": "LG POWERCOMM",
"scoring_executed_time": "2025-07-10 18:39:42",
"type": "ip"
}