Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/54.39.252.69
import requests
import json
url = 'https://api.maltiverse.com/ip/54.39.252.69'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/54.39.252.69'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "800-1801 McGill College",
"asn_cidr": "54.39.0.0/16",
"asn_country_code": "CA",
"asn_date": "2017-10-16 00:00:00",
"asn_registry": "arin",
"blacklist": [
{
"count": 32,
"description": "Suspicious Host",
"first_seen": "2024-07-25 02:59:32",
"labels": [
"anomalous-activity"
],
"last_seen": "2025-01-03 09:04:45",
"ref": [
1
],
"source": "AbuseIPDB"
},
{
"count": 1,
"description": "Unauthorized scanning of hosts",
"first_seen": "2021-01-31 09:38:48",
"last_seen": "2021-01-31 09:38:48",
"source": "Blocklist.net.ua"
},
{
"count": 1,
"description": "Malicious Host",
"first_seen": "2021-01-13 00:00:00",
"labels": [
"malicious-activity"
],
"last_seen": "2021-01-13 00:00:00",
"source": "HoneyDB"
}
],
"cidr": [
"54.39.0.0/16"
],
"city": "Montreal",
"classification": "suspicious",
"country_code": "CA",
"creation_time": "2021-01-13 13:11:09",
"email": [
"noc@ovh.net",
"abuse@ovh.ca"
],
"ip_addr": "54.39.252.69",
"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": "2017-10-16 00:00:00",
"location": {
"lat": 45.5063,
"lon": -73.5794
},
"modification_time": "2025-01-04 07:32:33",
"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": "H3A 2N4",
"registrant_name": "OVH Hosting, Inc.",
"state": "QC",
"tag": [
"abuse"
],
"type": "ip"
}