HackMyIP
← back to sheets

Free Privacy API: IP Lookup, Email Breach Check, VPN Detection (No Key)

~/sheets/free-privacy-api.md
1

A Free Privacy API You Can Use Right Now

2

Most privacy APIs charge money or require API keys. HackMyIP offers a completely free API with four endpoints, no authentication required. Perfect for developers building security tools, dashboards, or privacy-focused applications.

3

Endpoints

4
    5
  • GET /api/ip — Your IP address with geolocation, ISP, VPN detection, and privacy score
  • 6
  • GET /api/lookup?ip=8.8.8.8 — Look up any IP address
  • 7
  • GET /api/breach?email=user@example.com — Check email against 500+ breach databases. Returns breach count, affected services, risk score, and password exposure analysis
  • 8
  • GET /api/score — IP cleanliness grade (A-D), VPN/datacenter/residential detection
  • 9
    10

    Quick Start

    11

    No signup needed. Just make an HTTP request:

    12

    curl https://hackmyip.com/api/ip

    13

    Or in JavaScript:

    14

    const data = await fetch('https://hackmyip.com/api/breach?email=test@example.com').then(r => r.json());

    15

    Why It Is Free

    16

    HackMyIP runs on Cloudflare Workers with near-zero operating costs. There is no infrastructure to pay for, so the API can remain free. CORS is enabled, so you can call it from any website or application.

    17

    Use Cases

    18
      19
    • Check if user emails have been compromised during registration
    • 20
    • Build internal security dashboards
    • 21
    • Add IP geolocation to your app without paying for an API
    • 22
    • Detect if incoming traffic is from VPNs or datacenters
    • 23
    • Create privacy monitoring tools
    • 24
      25

      npm Package

      26

      For JavaScript developers, install the official client: npm install hackmyip. Full documentation and source code available on GitHub.

      27

      API Documentation

      28

      Full endpoint documentation with examples in cURL, JavaScript, and Python is available at hackmyip.com/api. An OpenAPI 3.1 specification is available at /.well-known/openapi.json for automatic client generation.

      29
      Last updated: April 2026