Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/148.70.125.137
import requests
import json
url = 'https://api.maltiverse.com/ip/148.70.125.137'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/148.70.125.137'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "Floor 6, Yinke Building, 38 Haidian St, Haidian District, Beijing Beijing 100080",
"as_name": "AS16811 Spacenet Inc",
"as_number": "16811",
"asn_cidr": "148.70.112.0/20",
"asn_country_code": "CN",
"asn_date": "1991-04-11 00:00:00",
"asn_registry": "apnic",
"blacklist": [
{
"count": 4,
"description": "Phishing Other",
"first_seen": "2021-01-13 11:20:10",
"labels": [
"compromised",
"malicious-activity"
],
"last_seen": "2021-01-15 08:28:17",
"source": "Phishtank"
},
{
"count": 2,
"description": "Bruteforce login attacker",
"first_seen": "2021-05-15 21:17:08",
"labels": [
"malicious-activity"
],
"last_seen": "2021-05-17 04:18:00",
"source": "Blocklist.de"
},
{
"count": 2,
"description": "HTTP Attacker",
"first_seen": "2021-05-15 21:06:52",
"labels": [
"malicious-activity"
],
"last_seen": "2021-05-17 04:08:36",
"source": "Blocklist.de"
}
],
"cidr": [
"148.70.0.0/16"
],
"classification": "suspicious",
"country_code": "CN",
"creation_time": "2021-01-13 11:20:10",
"email": [
"qcloud_net_duty@tencent.com",
"tencent_idc@tencent.com"
],
"ip_addr": "148.70.125.137",
"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,
"location": {
"lat": 39.9289,
"lon": 116.3883
},
"modification_time": "2024-05-11 15:52:47",
"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": "Tencent Cloud Computing (Beijing) Co., Ltd",
"tag": [
"phishing",
"apache",
"ddos",
"rfi",
"attacker",
"login",
"bruteforce",
"bot",
"joomla",
"wordpress"
],
"type": "ip"
}