Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/81.69.29.222
import requests
import json
url = 'https://api.maltiverse.com/ip/81.69.29.222'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/81.69.29.222'
$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": "AS45090 Tencent Cloud Computing beijing Co., LTD",
"as_number": "45090",
"asn_cidr": "81.69.0.0/18",
"asn_country_code": "CN",
"asn_date": "2002-01-11 00:00:00",
"asn_registry": "apnic",
"blacklist": [
{
"count": 4,
"description": "SSH Attacker",
"first_seen": "2021-03-13 19:38:18",
"labels": [
"malicious-activity"
],
"last_seen": "2021-05-17 04:49:13",
"source": "Blocklist.de"
},
{
"count": 2,
"description": "Malicious host",
"first_seen": "2021-03-21 13:00:49",
"labels": [
"malicious-activity"
],
"last_seen": "2021-04-30 04:09:57",
"source": "Darklist"
}
],
"cidr": [
"81.68.0.0/14"
],
"city": "Shanghai",
"classification": "suspicious",
"country_code": "CN",
"creation_time": "2021-03-13 19:38:18",
"email": [
"qcloud_net_duty@tencent.com",
"tencent_idc@tencent.com"
],
"ip_addr": "81.69.29.222",
"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": 31.230416,
"lon": 121.473701
},
"modification_time": "2025-06-19 21:44:46",
"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": "200001",
"registrant_name": "Tencent Cloud Computing beijing Co., LTD",
"scoring_executed_time": "2025-06-19 21:44:46",
"tag": [
"ssh",
"bruteforce",
"bot",
"apache",
"attacker",
"script kiddies"
],
"type": "ip"
}