To find out the IP2Proxy fraud score for an IP address using IP2Location.io in Ruby, you can use the IP2Location.io API to retrieve geolocation and related data.
require 'net/http'
require 'json'
key = 'YOUR_API_KEY'
ip = '8.8.8.8'
uri = URI('https://api.ip2location.io/')
params = { :key => key, :ip => ip }
uri.query = URI.encode_www_form(params)
res = Net::HTTP.get_response(uri)
if !res.body.nil?
begin
myobj = JSON.parse(res.body)
if res.is_a?(Net::HTTPSuccess)
if myobj.key? 'fraud_score'
puts 'The fraud score for IP ' + ip + ' is ' + myobj['fraud_score'] + '.'
else
puts 'ERROR: The fraud_score field requires a paid subscription to the Security plan.'
end
else
if res.body.include? 'error_message'
puts 'ERROR: ' + myobj['error']['error_message']
else
puts 'ERROR: ' + res.body
end
end
rescue JSON::ParserError
puts 'ERROR: Invalid JSON in response.'
end
else
puts 'ERROR: Error calling API.'
end
ruby test.rb
This script will output the IP2Proxy fraud score of specified IP address. Make sure to replace 8.8.8.8 with the IP address you want and replace YOUR_API_KEY to your own API key.
Empower your applications with accurate IP geolocation information now.
Try It for Free