Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/65.48.229.96
import requests
import json
url = 'https://api.maltiverse.com/ip/65.48.229.96'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/65.48.229.96'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "Wildey",
"as_name": "AS46408 Cable Wireless st.vincent Limited",
"as_number": "46408",
"asn_cidr": "65.48.229.0/24",
"asn_country_code": "BB",
"asn_date": "2007-10-02 00:00:00",
"asn_registry": "arin",
"blacklist": [
{
"count": 72,
"description": "DNS Server",
"first_seen": "2020-11-21 11:20:06",
"labels": [
"benign"
],
"last_seen": "2023-02-09 07:29:17",
"source": "Public-dns.info"
}
],
"cidr": [
"65.48.128.0/17"
],
"city": "Kingstown",
"classification": "neutral",
"country_code": "VC",
"creation_time": "2020-11-21 11:20:06",
"email": [
"andrew.millington@cwc.com",
"altie.jackson@cwc.com",
"cwc-csirt@cwc.com",
"nikolas.rock@cwc.com",
"junior.king@cwc.com",
"rnoc@cwc.com"
],
"ip_addr": "65.48.229.96",
"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": "2025-02-10 00:00:00",
"location": {
"lat": 13.1600249,
"lon": -61.2248157
},
"modification_time": "2025-02-21 03:44:55",
"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": "VC0100",
"registrant_name": "Cable Wireless st.vincent Limited",
"scoring_executed_time": "2025-02-21 02:16:34",
"state": "PostalCode:",
"tag": [
"dns",
"reflection"
],
"type": "ip"
}