Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/41.238.23.154
import requests
import json
url = 'https://api.maltiverse.com/ip/41.238.23.154'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/41.238.23.154'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "TE Data,\nSmart Village, Building A11-B90, Alex Desert Road,\n28 Km\n6th October 12577",
"as_name": "AS8452 TE Data",
"as_number": "8452",
"asn_cidr": "41.238.16.0/20",
"asn_country_code": "EG",
"asn_date": "2007-04-03 00:00:00",
"asn_registry": "afrinic",
"blacklist": [
{
"count": 1,
"description": "Unauthorized scanning of hosts",
"first_seen": "2020-11-21 17:48:01",
"labels": [
"malicious-activity"
],
"last_seen": "2020-11-22 10:00:06",
"source": "Blocklist.net.ua"
}
],
"cidr": [
"41.238.0.0/16"
],
"city": "Zagazig",
"classification": "suspicious",
"country_code": "EG",
"creation_time": "2020-11-21 11:06:17",
"email": [
"admins@tedata.net",
"abuse@tedata.net"
],
"ip_addr": "41.238.23.154",
"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": 30.5877,
"lon": 31.502
},
"modification_time": "2020-11-22 10:00:06",
"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": "TE Data",
"tag": [
"abuse"
],
"type": "ip"
}