Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/178.221.183.222
import requests
import json
url = 'https://api.maltiverse.com/ip/178.221.183.222'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/178.221.183.222'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "TELEKOM SRBIJA",
"as_name": "AS8400 TELEKOM SRBIJA a d",
"as_number": "8400",
"asn_cidr": "178.220.0.0/15",
"asn_country_code": "RS",
"asn_date": "2010-03-31 00:00:00",
"asn_registry": "ripencc",
"blacklist": [
{
"count": 1,
"description": "Bruteforce login attacker",
"first_seen": "2021-02-04 09:12:14",
"labels": [
"malicious-activity"
],
"last_seen": "2021-02-06 00:33:03",
"source": "Blocklist.de"
},
{
"count": 1,
"description": "HTTP Attacker",
"first_seen": "2021-02-04 08:57:08",
"labels": [
"malicious-activity"
],
"last_seen": "2021-02-06 00:16:25",
"source": "Blocklist.de"
},
{
"count": 1,
"description": "HTTP Spammer",
"first_seen": "2020-12-29 13:28:24",
"labels": [
"malicious-activity"
],
"last_seen": "2021-01-07 21:09:11",
"source": "Myip.ms"
},
{
"count": 1,
"description": "HTTP Spammer",
"first_seen": "2020-05-24 03:06:04",
"last_seen": "2020-05-24 03:06:04",
"source": "StopForumSpam.com"
}
],
"cidr": [
"178.221.48.0/20",
" 178.221.64.0/18",
" 178.221.128.0/17"
],
"city": "Belgrade",
"classification": "suspicious",
"country_code": "RS",
"creation_time": "2020-05-24 03:06:04",
"email": [
"abuse@isp.telekom.rs"
],
"ip_addr": "178.221.183.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,
"last_updated": "2018-11-05 09:19:51",
"location": {
"lat": 44.8186,
"lon": 20.4681
},
"modification_time": "2021-02-06 00:33:03",
"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,
"tag": [
"bot",
"abuse",
"apache",
"ddos",
"rfi",
"attacker",
"login",
"bruteforce",
"joomla",
"wordpress"
],
"type": "ip"
}