
$ apify call bulk-ip-geolocation-&-risk-lookup
Bulk IP Geolocation & Risk Lookup
Bulk IP geolocation and risk lookup for IPv4/IPv6 addresses. Get country, city, ASN, ISP, timezone, VPN, proxy, Tor, datacenter, and risk score data.
platform
Apify
status
Public
pricing
$0.50 / 1,000 delivered results
outputs
Location, Network, Risk signals, Risk score, Dataset
What it does
Bulk IP geolocation and risk lookup for IPv4/IPv6 addresses. Get country, city, ASN, ISP, timezone, VPN, proxy, Tor, datacenter, and risk score data.
Key capabilities
- Configure the run from the Apify form or API.
- Receive structured Location, Network, Risk signals data.
- Export the default Dataset or connect it to an automation.
Use cases
- Enrich logs, users, or internal datasets.
- Detect VPN, proxy, Tor, and datacenter traffic.
- Automate fraud, abuse, or risk rules.
Main inputs
- IPv4 or IPv6 addresses.
- Batch size, timeout, and retries.
- Deduplication and continue-on-error behavior.
API example
This is a minimal illustrative payload. Check the Actor input form in Apify for every supported option.
Example input (input.json)
{
"ips": [
"8.8.8.8",
"1.1.1.1"
]
}
curl -X POST "https://api.apify.com/v2/acts/datascraperes~bulk-ip-geolocation-risk-lookup/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
--data-binary @input.json
The run stores its successful items in the default Dataset. A representative item looks like this:
Example result
{
"ip": "8.8.8.8",
"country": "US",
"city": "Mountain View",
"asn": 15169,
"isProxy": false,
"riskScore": 0
}
Data you get
Each successful item is saved in the default Apify Dataset, ready to export or connect to a workflow.
- Location
- Network
- Risk signals
- Risk score
- Dataset
Try it free
The Apify Free plan includes $5 in monthly credits, with no credit card required. Use them to try this Actor; credits do not roll over and renew at the start of each billing cycle.
Pricing
Apify charges $0.50 / 1,000 delivered results. Only the public billing event ip-resolved is charged when Apify records a successful result.
Scope
The Actor works with publicly available data. Coverage and available fields can vary by target, country, and the source page at the time of the run.
How to use it
- Open the Actor in Apify.
- Add the targets or filters required by the input form.
- Start the run and export the default Dataset as JSON, CSV, or Excel.
// related