Skip to main content

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:

KeyRequiredTypeConstraintsExplanation
ip_addressYesStringipv4 or ipv6 formatIP address you want to check

Receiving response

KeyTypeConstraints
risk_levelString- Values:
-VERY_LOW
-LOW
-MEDIUM
-HIGH
-VERY_HIGH
-NOT_CHECKED

Examples

Example request

{
"ip_address": "64.236.213.12"
}

Example response

{
"risk_level": "LOW"
}