Loading
Loading
https://api.apifreaks.com/v1.0/ip/security
1. Open the Authorizations dropdown and Verify your API key.
2. Click Run to see the live response here.
$ pip install requestsimport requests
import json
url = "https://api.apifreaks.com/v1.0/ip/security"
payload = json.dumps({
"ips": [
"8.8.8.8",
"1.1.1.1",
"45.33.32.156"
]
})
headers = {
'Content-Type': 'application/json',
'X-apiKey': ''
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
The response will be an array of objects, with each object containing VPN/Proxy detection lookup data for the corresponding IP address in the request.
| Field | Type | Requirement | Description |
|---|---|---|---|
| Bulk | Array | Mandatory | The response will be an array of objects, with each object containing security data for the corresponding IP address in the request. Each object will include the following fields: See the. |