IP address proxy check
This service checks the IP address and returns its risk level.
The proxies are used widely in many industries for various tasks, the proxy not in all time is bad thing, we are detecting proxies which are used in fraudulent activity. The new fraudulent proxy cannot be found until they are reported.
Callback
This check can be enabled to be checked before sending a result webhook and this check results would be in the data
table's clientIpProxyRiskLevel
field of the webhook.
Sending request
Send a HTTP Post request to: https://ivs.idenfy.com/fraud/proxy-check
The request must contain basic auth headers where username is api key and password is api secret.
note
API key and API secret can be retrieved by contacting iDenfy sales team:
The request must contain JSON with parameters:
Key | Required | Type | Constraints | Explanation |
---|---|---|---|---|
ip_address | Yes | String | ipv4 or ipv6 format | IP address you want to check |
Receiving response
Key | Type | Constraints |
---|---|---|
risk_level | String | - Values: - VERY_LOW - LOW - MEDIUM - HIGH - VERY_HIGH - NOT_CHECKED |
Examples
Example request
{
"ip_address": "64.236.213.12"
}
Example response
{
"risk_level": "LOW"
}