Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/13.94.235.132
import requests
import json
url = 'https://api.maltiverse.com/ip/13.94.235.132'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/13.94.235.132'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "One Microsoft Way",
"as_name": "AS8075 Microsoft Corporation",
"as_number": "8075",
"asn_cidr": "13.64.0.0/11",
"asn_country_code": "US",
"asn_date": "2015-03-26 00:00:00",
"asn_registry": "arin",
"blacklist": [
{
"count": 6,
"description": "Generic.Malware",
"first_seen": "2020-11-21 13:15:51",
"last_seen": "2021-02-16 13:16:02",
"source": "Hybrid-Analysis"
}
],
"cidr": [
"13.96.0.0/13",
" 13.104.0.0/14",
" 13.64.0.0/11"
],
"city": "Redmond",
"classification": "neutral",
"country_code": "NL",
"creation_time": "2020-11-21 13:15:51",
"email": [
"msndcc@microsoft.com",
"IOC@microsoft.com",
"abuse@microsoft.com"
],
"ip_addr": "13.94.235.132",
"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-03-26 00:00:00",
"location": {
"lat": 52.3534,
"lon": 4.9087
},
"modification_time": "2024-05-09 06:39:51",
"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": "98052",
"registrant_name": "Microsoft Corporation",
"state": "WA",
"tag": [],
"type": "ip"
}