Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/49.64.214.65
import requests
import json
url = 'https://api.maltiverse.com/ip/49.64.214.65'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/49.64.214.65'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "No.31 ,jingrong street,beijing\n100032",
"as_name": "AS4134 Chinanet",
"as_number": "4134",
"asn_cidr": "49.64.0.0/11",
"asn_country_code": "CN",
"asn_date": "2010-11-15 00:00:00",
"asn_registry": "apnic",
"blacklist": [
{
"count": 2,
"description": "Unauthorized scanning of hosts",
"first_seen": "2021-01-17 10:19:00",
"labels": [
"malicious-activity"
],
"last_seen": "2021-02-15 10:19:42",
"source": "Blocklist.net.ua"
},
{
"count": 4,
"description": "SSH Attacker",
"first_seen": "2021-01-13 20:03:17",
"labels": [
"malicious-activity"
],
"last_seen": "2021-01-26 10:01:38",
"source": "Blocklist.de"
},
{
"count": 2,
"description": "Malicious Host",
"first_seen": "2021-01-13 00:00:00",
"last_seen": "2021-01-13 00:00:00",
"source": "HoneyDB"
}
],
"cidr": [
"49.64.0.0/11"
],
"city": "Suzhou",
"classification": "suspicious",
"country_code": "CN",
"creation_time": "2021-01-13 20:03:17",
"email": [
"ip@jsinfo.net",
"anti-spam@ns.chinanet.cn.net",
"jsabuse@189.cn",
"abuse@jsinfo.net"
],
"ip_addr": "49.64.214.65",
"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.3041,
"lon": 120.5954
},
"modification_time": "2024-05-09 16:30:11",
"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": "CHINANET jiangsu province network\nChina Telecom\n260 Zhongyang Road,Nanjing 210037",
"tag": [
"ssh",
"bruteforce",
"bot",
"abuse"
],
"type": "ip"
}