Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/194.168.4.123
import requests
import json
url = 'https://api.maltiverse.com/ip/194.168.4.123'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/194.168.4.123'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "Virgin Media\n500 Brook Drive Green Park\nReading\nBerkshire\nRG2 6UU",
"as_name": "AS5089 Virgin Media Limited",
"as_number": "5089",
"asn_cidr": "194.168.0.0/17",
"asn_country_code": "GB",
"asn_date": "1995-12-11 00:00:00",
"asn_registry": "ripencc",
"blacklist": [
{
"count": 30,
"description": "DNS Server",
"first_seen": "2020-11-21 11:08:35",
"labels": [
"benign"
],
"last_seen": "2025-08-10 18:32:08",
"ref": [
1,
21745
],
"source": "Public-dns.info"
}
],
"cidr": [
"194.168.4.0/23"
],
"city": "London",
"classification": "neutral",
"country_code": "GB",
"creation_time": "2020-11-21 11:08:35",
"ip_addr": "194.168.4.123",
"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": "2015-11-14 14:46:47",
"location": {
"lat": 51.5073509,
"lon": -0.1277583
},
"modification_time": "2025-08-10 18:32:08",
"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": "SW1",
"registrant_name": "Virgin Media Limited",
"scoring_executed_time": "2025-06-15 20:41:50",
"tag": [
"dns",
"reflection"
],
"type": "ip"
}