Stop fraud before it starts. Closriq helps you screen IPs in real-time
block bots, prevent fraud, and protect your business with our powerful API.
Enter any IP address to instantly check its reputation and risk level
Get started with just one API call
curl -X GET "https://closriq.com/api/ip-check.php?ip=159.65.222.227"
const response = await fetch('https://closriq.com/api/ip-check.php?ip=159.65.222.227');
const data = await response.json();
console.log(data.fraud_score); // 100
import requests
response = requests.get('https://closriq.com/api/ip-check.php?ip=159.65.222.227')
data = response.json()
print(data['fraud_score']) # 100
{
"success": true,
"message": "Success",
"fraud_score": 100,
"category": "hosting",
"threat_level": "high",
"ip": "159.65.222.227",
"ip_type": "ipv4",
"country_code": "US",
"region": "New York",
"city": "New York City",
"zip_code": "10004",
"timezone": "America/New_York",
"latitude": 40.71427,
"longitude": -74.00597,
"ISP": "DigitalOcean, LLC",
"ASN": 14061,
"organization": "DigitalOcean, LLC",
"proxy": false,
"vpn": false,
"tor": false,
"hosting": true,
"abuser": false,
"recent_abuse": false,
"bot_status": false,
"mobile": false,
"host": "",
"flags": ["hosting","asn_hosting","webdriver_missing","screen_missing","lang_missing"],
"reasons": ["Matched hosting IP range","Hosting ASN: 14061 (DigitalOcean, LLC)","Missing browser automation signal (navigator.webdriver)","Missing screen size info","Missing browser language info"],
"browser_signals": {"timezone": null,"screen": null,"webdriver": null,"language": null,"user_agent": "Mozilla/5.0..."},
"abuseipdb_blacklist": null,
"response_time_ms": 2.58
}
Join thousands of developers who trust Closriq for reliable IP reputation checks. Start protecting your applications today.