Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/hostname/760.uk
import requests
import json
url = 'https://api.maltiverse.com/hostname/760.uk'
response = requests.get(url)
parsed = json.loads(response.text)
print(json.dumps(parsed, indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/hostname/760.uk'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"classification": "neutral",
"creation_time": "2025-03-06 08:40:10",
"domain": "760.uk",
"domain_consonants": 1,
"domain_lenght": 6,
"entropy": 2.584962500721156,
"hostname": "760.uk",
"is_alive": false,
"is_cnc": false,
"is_distributing_malware": false,
"is_iot_threat": false,
"is_mining_pool": false,
"is_open_proxy": false,
"is_phishing": false,
"is_storing_phishing": false,
"is_tor_node": false,
"is_vpn_node": false,
"last_online_time": null,
"modification_time": "2025-03-06 08:40:10",
"number_of_offline_malicious_urls_allocated": 0,
"number_of_online_malicious_urls_allocated": 0,
"tld": "uk",
"type": "hostname"
}