IP Intelligence
IP Intelligence Verification endpoint is a security solution that helps in verifying the authenticity and credibility of the IP addresses accessing a website or online service.
The endpoint can help protect against various types of cyber threats, including fraud, spam, hacking, and other malicious activities. It is an essential tool for online businesses and organizations that rely on the internet to conduct their operations.
TEST DATA
ip_address: 41.217.50.198
POST
{{url}}/identityradar/api/v1/ip-intelligence
Request Header
Key | Description |
---|---|
api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
ip_address | IP address |
Sample Response
{
"success": true,
"status": "00",
"response": {
"geolocation": {
"status": "success",
"continent": "Africa",
"continentCode": "AF",
"country": "Nigeria",
"countryCode": "NG",
"region": "LA",
"regionName": "Lagos",
"city": "Lagos",
"district": "",
"zip": "",
"lat": 6.4474,
"lon": 3.3903,
"timezone": "Africa/Lagos",
"offset": 3600,
"currency": "NGN",
"isp": "SP 217",
"org": "",
"as": "AS37340 SPECTRANET LIMITED",
"asname": "Spectranet",
"reverse": "",
"mobile": true,
"proxy": false,
"hosting": false,
"query": "41.217.50.198"
},
"ats": {
"is-hijacked": false,
"is-spider": false,
"is-tor": false,
"is-dshield": false,
"is-vpn": false,
"ip": "41.217.50.198",
"is-spyware": false,
"is-spam-bot": false,
"blocklists": [],
"last-seen": 0,
"is-bot": false,
"sensors": [],
"list-count": 0,
"cidr": "",
"is-listed": false,
"is-proxy": false,
"is-malware": false,
"is-exploit-bot": false
},
"black_list": []
}
}
Response Description
Response | Description |
---|---|
success | Indicates whether the request was successful ("true") or not ("false"). |
status | A status code that represents the result of the request. |
response | Contains an array of information about the IP address |
geolocation | Geolocation information for the given IP address. |
status | A status code indicating the result of the request. |
continent | Continent where the IP address is located. |
continentCode | Two-letter code representing the continent. |
country | Country where the IP address is located. |
countryCode | Two-letter code representing the country. |
region | Region code of the IP address location. |
regionName | Name of the region where the IP address is located. |
city | City where the IP address is located. |
district | District or area within the city. |
zip | ZIP or postal code of the location. |
lat | Latitude coordinate of the location. |
lon | Longitude coordinate of the location. |
timezone | Timezone of the location. |
offset | Timezone offset from UTC in seconds. |
currency | Currency used in the country. |
isp | Internet Service Provider (ISP) information. |
org | Organization associated with the IP address. |
as | Autonomous System (AS) number and name. |
reverse | Reverse DNS information, if available. |
mobile | Indicates if the IP address is associated with a mobile network. |
proxy | Indicates if the IP address is a proxy server. |
hosting | Indicates if the IP address is associated with a hosting service. |
query | The queried IP address. |
ats | ATS stands for "Advanced Threat Score." It represents a risk score indicating the likelihood that the IP address is associated with malicious activities or threats. |
is-hijacked | Indicates if the IP address is hijacked. |
is-spider | Indicates if the IP address is a spider or crawler. |
is-tor | Indicates if the IP address is a TOR exit node. |
is-dshield | Indicates if the IP address is associated with DShield. |
is-vpn | Indicates if the IP address belongs to a VPN. |
ip | The IP address being analyzed. |
is-spyware | Indicates if the IP address is associated with spyware. |
is-spam-bot | Indicates if the IP address is a spam bot. |
blocklists | List of blocklists associated with the IP address. |
last-seen | Timestamp indicating when the IP address was last seen. |
is-bot | Indicates if the IP address is associated with a bot. |
sensors | List of sensors associated with the IP address. |
list-count | Count of listings associated with the IP address. |
cidr | CIDR notation of the IP address. |
is-listed | Indicates if the IP address is listed on any blocklist. |
is-proxy | Indicates if the IP address is a proxy. |
malware | Indicates if the IP address is associated with malware. |
exploit-bot | Indicates if the IP address is an exploit bot. |
black_list | List of blacklists associated with the IP address. |
Updated about 1 year ago