Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/69.94.147.43
import requests
import json
url = 'https://api.maltiverse.com/ip/69.94.147.43'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/69.94.147.43'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "10321 Placer Lane",
"as_name": "AS16578 Lanset America Corporation",
"as_number": "16578",
"asn_cidr": "69.94.147.0/24",
"asn_country_code": "US",
"asn_date": "2005-08-03 00:00:00",
"asn_registry": "arin",
"blacklist": [
{
"count": 1,
"description": "Mail Spammer",
"first_seen": "2021-01-13 19:32:46",
"labels": [
"malicious-activity"
],
"last_seen": "2021-02-19 09:27:32",
"source": "Blocklist.de"
},
{
"count": 1,
"description": "Mail Spammer",
"first_seen": "2021-01-13 19:32:46",
"last_seen": "2021-01-13 19:32:46",
"source": "Barracuda"
}
],
"cidr": [
"69.94.128.0/19"
],
"city": "Sacramento",
"classification": "suspicious",
"country_code": "US",
"creation_time": "2021-01-13 19:32:46",
"email": [
"abuse@lanset.com",
"iptech@lanset.com",
"IPTECH@lanset.com"
],
"ip_addr": "69.94.147.43",
"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": "2012-02-24 00:00:00",
"location": {
"lat": 38.5674,
"lon": -121.32
},
"modification_time": "2021-02-19 09:27:32",
"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": "95827",
"registrant_name": "Lanset America Corporation",
"state": "CA",
"tag": [
"mail",
"spam"
],
"type": "ip"
}