IP Threat Intelligence
# Stop fraud before it signs up One GET request tells you whether an IP is hiding behind a VPN, exiting Tor, coming from a datacenter, or recently flagged for abuse — plus its ASN, organization, and country — with a **0–100 risk score** you can threshold directly in your signup, checkout, or login flow. ``` GET /v1/ip-intel?ip=171.25.193.25 ``` ```json { "ip": "171.25.193.25", "is_vpn": false,…
IP Threat Intelligence endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET |
Check IP address /v1/ip-intel |
Check one IPv4 or IPv6 address. Returns VPN/Tor/datacenter/abuser flags, is_anonymous, a 0-100 risk score, ASN number + organization, asn_type and country_code. |
| GET |
Check my IP /v1/ip-intel/me |
Check the caller's own IP address (auto-detected from the request). Same response shape as the single-IP endpoint - no parameters needed. |
| POST |
Bulk check (up to 100) /v1/ip-intel/bulk |
Check up to 100 IPv4/IPv6 addresses in one call. Returns one result per IP in the same order; invalid entries return a per-item error object and never fail the whole batch. |
IP Threat Intelligence pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $7.99 / month | — |
|
| ULTRA | $18.99 / month | — |
|
| MEGA | $39.99 / month | — |
|