Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/27.72.153.68
import requests
import json
url = 'https://api.maltiverse.com/ip/27.72.153.68'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/27.72.153.68'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "Ha Noi, VietNam",
"as_name": "AS7552 Viettel Corporation",
"as_number": "7552",
"asn_cidr": "27.72.153.0/24",
"asn_country_code": "VN",
"asn_date": "2010-04-27 00:00:00",
"asn_registry": "apnic",
"blacklist": [
{
"count": 2,
"description": "Parasite traffic on site iambass.com.",
"first_seen": "2021-01-30 08:58:44",
"labels": [
"malicious-activity"
],
"last_seen": "2021-01-30 09:26:21",
"source": "Blocklist.net.ua"
},
{
"count": 4,
"description": "Mail Spammer",
"first_seen": "2021-01-30 08:58:45",
"last_seen": "2021-05-04 23:07:14",
"source": "Abuseat.org"
},
{
"count": 4,
"description": "Mail Spammer",
"first_seen": "2021-01-30 08:58:45",
"last_seen": "2021-05-04 23:07:14",
"source": "Barracuda"
},
{
"count": 2,
"description": "SSH Attacker",
"first_seen": "2021-05-04 23:07:14",
"labels": [
"malicious-activity"
],
"last_seen": "2021-05-05 02:42:01",
"source": "Blocklist.de"
}
],
"cidr": [
"27.64.0.0/12"
],
"city": "Nam Định",
"classification": "suspicious",
"country_code": "VN",
"creation_time": "2021-01-29 22:06:04",
"email": [
"hm-changed@vnnic.vn",
"soc@viettel.com.vn"
],
"ip_addr": "27.72.153.68",
"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": 20.4167,
"lon": 106.1667
},
"modification_time": "2024-05-09 14:43:01",
"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": "Viettel Group\nNo 1, Tran Huu Duc street, My Dinh 2 ward, Nam Tu Liem district, Ha Noi City",
"tag": [
"ssh",
"bruteforce",
"bot",
"abuse"
],
"type": "ip"
}