Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/98.210.36.192
import requests
import json
url = 'https://api.maltiverse.com/ip/98.210.36.192'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/98.210.36.192'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"as_name": "AS7922 Comcast Cable Communications, Inc.",
"as_number": "7922",
"blacklist": [
{
"count": 1,
"description": "HTTP Spammer",
"first_seen": "2020-10-19 01:57:20",
"last_seen": "2020-10-19 08:24:40",
"source": "Cleantalk.org"
}
],
"city": "Sunnyvale",
"classification": "suspicious",
"country_code": "US",
"creation_time": "2020-10-19 01:57:20",
"ip_addr": "98.210.36.192",
"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.36883,
"lon": -122.0363496
},
"modification_time": "2025-07-10 17:07:57",
"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": "94807",
"registrant_name": "Comcast Cable Communications, Inc.",
"scoring_executed_time": "2025-07-10 17:07:57",
"state": "CA",
"tag": [
"abuse",
"bot"
],
"type": "ip"
}