Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/49.233.46.25
import requests
import json
url = 'https://api.maltiverse.com/ip/49.233.46.25'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/49.233.46.25'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "Beijing, China",
"as_name": "AS45090 Shenzhen Tencent Computer Systems Company Limited",
"as_number": "45090",
"asn_cidr": "49.233.32.0/20",
"asn_country_code": "CN",
"asn_date": "2010-11-26 00:00:00",
"asn_registry": "apnic",
"blacklist": [
{
"count": 1,
"description": "Unauthorized scanning of hosts",
"first_seen": "2024-12-08 14:00:30",
"labels": [
"malicious-activity"
],
"last_seen": "2024-12-08 14:00:30",
"ref": [
1
],
"source": "Blocklist.net.ua"
},
{
"count": 1,
"description": "Malicious Host",
"first_seen": "2023-04-16 06:26:16",
"labels": [
"malicious-activity"
],
"last_seen": "2023-04-21 08:14:51",
"source": "CIArmy"
},
{
"count": 1,
"description": "ET CINS Active Threat Intelligence Poor Reputation IP TCP",
"first_seen": "2023-04-20 11:55:33",
"labels": [
"malicious-activity"
],
"last_seen": "2023-04-24 08:45:10",
"source": "Emerging Threats"
},
{
"count": 1,
"description": "ET CINS Active Threat Intelligence Poor Reputation IP UDP",
"first_seen": "2023-04-20 11:55:38",
"labels": [
"malicious-activity"
],
"last_seen": "2023-04-24 08:45:15",
"source": "Emerging Threats"
}
],
"cidr": [
"49.232.0.0/14"
],
"city": "Beijing",
"classification": "suspicious",
"country_code": "CN",
"creation_time": "2023-04-16 06:26:16",
"email": [
"ipas@cnnic.cn",
"clarkcheng@tencent.com",
"klayliang@tencent.com"
],
"ip_addr": "49.233.46.25",
"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.904211,
"lon": 116.407395
},
"modification_time": "2024-12-08 14:00:30",
"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": "100010",
"registrant_name": "Tencent cloud computing (Beijing) Co., Ltd.\nFloor 6, Yinke Building,38 Haidian St,\nHaidian District Beijing",
"tag": [
"abuse"
],
"type": "ip"
}