Developers can check API Specification here:
curl -H "Authorization: Bearer <API_KEY>" https://api.maltiverse.com/ip/122.177.168.26
import requests
import json
url = 'https://api.maltiverse.com/ip/122.177.168.26'
response = requests.get(url)
print(json.dumps(response.json(), indent=4, sort_keys=True))
$url = 'https://api.maltiverse.com/ip/122.177.168.26'
$headers = @{Authorization=("Bearer {0}" -f "<API_KEY>")}
$response = Invoke-RestMethod $url -Headers $headers
Write-Output $response
{
"address": "Bharti Airtel Ltd.",
"as_name": "AS24560 BHARTI AIRTEL LTD B C 1 SECTOR NOIDA UP 01 01",
"as_number": "24560",
"asn_cidr": "122.177.160.0/20",
"asn_country_code": "IN",
"asn_date": "2008-07-07 00:00:00",
"asn_registry": "apnic",
"blacklist": [
{
"count": 1,
"description": "Mail Spammer",
"first_seen": "2025-02-25 22:47:44",
"last_seen": "2025-02-25 22:47:44",
"source": "Barracuda"
},
{
"count": 1,
"description": "HTTP Spammer",
"first_seen": "2021-01-13 15:53:09",
"labels": [
"malicious-activity"
],
"last_seen": "2021-04-08 22:31:30",
"source": "StopForumSpam.com"
}
],
"cidr": [
"122.177.0.0/16"
],
"city": "Jaipur",
"classification": "suspicious",
"country_code": "IN",
"creation_time": "2021-01-13 15:53:09",
"email": [
"DSLTAC2NORTH.UNOC@airtel.com",
"shankar.B@airtel.com",
"dsltac2north.unoc@airtel.com",
"shankar.b@airtel.com",
"noc-dataprov@airtel.com"
],
"ip_addr": "122.177.168.26",
"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": 26.9124336,
"lon": 75.7872709
},
"modification_time": "2025-02-25 23:01:21",
"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": "302001",
"registrant_name": "BHARTI AIRTEL LTD B C 1 SECTOR NOIDA UP 01 01",
"scoring_executed_time": "2025-02-25 22:47:49",
"tag": [
"bot",
"abuse"
],
"type": "ip"
}