Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/181.215.56.169
import requests
import json
url = 'https://api.maltiverse.com/ip/181.215.56.169'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/181.215.56.169'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"as_name": "AS20473 Choopa LLC",
"as_number": "20473",
"asn_cidr": "181.215.56.0/21",
"asn_country_code": "CL",
"asn_date": "2014-05-29 00:00:00",
"asn_registry": "lacnic",
"blacklist": [
{
"count": 1,
"description": "HTTP Spammer",
"first_seen": "2020-05-24 03:06:12",
"last_seen": "2020-05-24 03:06:12",
"source": "StopForumSpam.com"
}
],
"cidr": [
"181.215.56.0/23"
],
"classification": "suspicious",
"country_code": "US",
"creation_time": "2020-05-24 03:06:12",
"email": [
"abuse@HEFICED.COM"
],
"ip_addr": "181.215.56.169",
"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": "2017-01-31 00:00:00",
"location": {
"lat": 41.1034,
"lon": -104.9059
},
"modification_time": "2020-05-24 03:06:12",
"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": "RapidDedi",
"tag": [
"bot",
"abuse"
],
"type": "ip"
}