Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/84.217.38.128
import requests
import json
url = 'https://api.maltiverse.com/ip/84.217.38.128'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/84.217.38.128'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "Katarinavagen 15\n11688\nStockholm\nSWEDEN",
"as_name": "AS2119 Telenor Norge AS",
"as_number": "2119",
"asn_cidr": "84.216.0.0/14",
"asn_country_code": "SE",
"asn_date": "2004-05-24 00:00:00",
"asn_registry": "ripencc",
"blacklist": [
{
"count": 1,
"description": "HTTP Spammer",
"first_seen": "2020-03-27 03:12:17",
"last_seen": "2020-03-27 03:12:17",
"source": "StopForumSpam.com"
}
],
"cidr": [
"84.217.38.128/25"
],
"classification": "suspicious",
"country_code": "SE",
"creation_time": "2020-03-27 03:12:17",
"email": [
"abuse@ownit.se",
"netmaster@ownit.se"
],
"ip_addr": "84.217.38.128",
"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": "2016-02-22 15:10:11",
"location": {
"lat": 55.6059,
"lon": 13.0007
},
"modification_time": "2020-03-27 03:12:17",
"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,
"registrant_name": "CUSTOMERS-OWNIT-SE\n----------------------------\nPlease send abuse reports to\nabuse@ownit.se",
"tag": [
"bot",
"abuse"
],
"type": "ip"
}