Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/38.94.109.241
import requests
import json
url = 'https://api.maltiverse.com/ip/38.94.109.241'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/38.94.109.241'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "2450 N Street NW",
"as_name": "AS174 Cogent Communications",
"as_number": "174",
"asn_cidr": "38.94.109.241/32",
"asn_country_code": "US",
"asn_date": "1991-04-16 00:00:00",
"asn_registry": "arin",
"blacklist": [
{
"count": 4,
"description": "Malicious Host",
"first_seen": "2021-05-06 22:43:31",
"labels": [
"malicious-activity"
],
"last_seen": "2021-05-08 05:36:41",
"source": "CIArmy"
},
{
"count": 4,
"description": "ET CINS Active Threat Intelligence Poor Reputation IP UDP",
"first_seen": "2021-05-05 03:17:15",
"labels": [
"malicious-activity"
],
"last_seen": "2021-05-07 20:25:30",
"source": "Emerging Threats"
},
{
"count": 4,
"description": "ET CINS Active Threat Intelligence Poor Reputation IP TCP",
"first_seen": "2021-05-05 03:17:11",
"labels": [
"malicious-activity"
],
"last_seen": "2021-05-07 20:25:26",
"source": "Emerging Threats"
},
{
"count": 4,
"description": "Unauthorized scanning of hosts",
"first_seen": "2021-05-04 23:19:41",
"labels": [
"malicious-activity"
],
"last_seen": "2021-05-10 10:59:07",
"source": "Blocklist.net.ua"
}
],
"cidr": [
"38.0.0.0/8"
],
"city": "Washington",
"classification": "suspicious",
"country_code": "US",
"creation_time": "2021-05-04 23:19:41",
"email": [
"abuse@cogentco.com",
"noc@cogentco.com",
"ipalloc@cogentco.com"
],
"ip_addr": "38.94.109.241",
"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-06-20 00:00:00",
"location": {
"lat": 37.751,
"lon": -97.822
},
"modification_time": "2024-05-09 15:22:53",
"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": "20037",
"registrant_name": "PSINet, Inc.",
"state": "DC",
"tag": [
"abuse"
],
"type": "ip"
}