Version 3.1 // Stable Build
Programmatic access to the BreachLookup intelligence grid. All endpoints require HTTPS and return JSON.
The absolute most powerful endpoint. Pass a single target to the universal tool, and our engine will automatically detect the input type (Email, Phone, Hash, IP, Domain, Username) and execute concurrent searches across all applicable databases.
curl -X POST "https://breachlookup.com/api" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: YOUR_KEY" \
-d '{
"tool": "universal",
"query": "[email protected]"
}'
Pass the tool parameter in your JSON body to select a specific module.
| TOOL ID | REQUIRED INPUT | DESCRIPTION |
|---|---|---|
| universal | Auto-Detect | OMNI Search (Runs multiple APIs) |
| osintsnow_unified | Enter query... | Unified OSINT Search |
| hudsonrock_unified | Query | HudsonRock Intelligence |
| leakcheck_unified | Query | LeakCheck Global |
| osintcat_unified | Query | OSINTCat.com |
| idleakcheck_npd | Query | NPD Search (USA) |
| idleakcheck_usa | Query | USA Consumer (Disabled) |
| live_email | Email Address | Live Email Lookup |
| live_phone | Phone Number | Live Phone Lookup |
| seon_email | Email Address | Seon Email |
| seon_phone | Phone Number | Seon Phone |
| keyscore | Email or Username | KeyScore |
| leakosint | Email or Username | LeakOSINT |
| snusbase | Email, User, Name, IP | Snusbase |
| snusbase_ip | IP Address | Snusbase IP |
| snusbase_hash | MD5/SHA1 | Snusbase Hash |
| leakcheck_v2 | Email or User | LeakCheck v2 |
| hackcheck | HackCheck | |
| breachbase | Email, User, Domain | BreachBase |
| intelvault | Query | IntelVault |
| breachvip | Email or User | BreachVIP |
| akula | Email or Phone | Akula |
| leaksight | Query | LeakSight |
| dumpcat_init | Dump.cat | |
| inf0sec_leaks | Query | Inf0sec Leaks |
| inf0sec_discord | Discord Query | Inf0sec Discord |
| inf0sec_npd | Name/SSN | Inf0sec NPD |
| inf0sec_domain | Domain | Inf0sec Domain |
| inf0sec_username | Username | Inf0sec Username |
| inf0sec_hlr | Phone | Inf0sec HLR |
| inf0sec_cfx | Query | Inf0sec CFX |
| intelfetch_court | Full Name | Court Records |
| rutify_rut | RUT Number | Rutify RUT |
| rutify_name | Full Name | Rutify Name |
| rutify_car | License Plate | Rutify Car |
| rutify_sii | RUT Number | Rutify SII |
| melissa | Name or Address | Melissa |
| genesis_discord | Discord ID | Genesis Discord |
| github | GitHub Recon | |
| discord_stalker | User ID | Discord Stalker |
| room101 | Username | Room101 (Reddit) |
| tiktok | Username | TikTok OSINT |
| minecraft | Username | Minecraft |
| oathnet_roblox | User ID | Roblox |
| oathnet_steam | Steam ID | Steam |
| oathnet_xbox | Gamertag | Xbox |
| shodan_host | IP Address | Shodan Host |
| shodan_dns | Domain | Shodan DNS |
| shodan_exploits | Query | Shodan Exploits |
| shodan_honey | IP Address | Shodan Honeypot |
| intelfetch_ip | IP Address | IntelFetch IP |
| intelfetch_domain | Domain | IntelFetch Domain |
| intelfetch_crypto | Wallet Addr | Crypto Wallet |
| intelx_unified | System ID | IntelX Archive |
| breach_rip | Select Provider & Query | BREACH.RIP Module |
Include your Secret Key in the X-Secret-Key header.
Access infection data and stealer logs.
curl -X POST "https://breachlookup.com/api" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: YOUR_KEY" \
-d '{
"tool": "hudsonrock_unified",
"hudsonrock_mode": "domain",
"query": "example.com"
}'
Advanced Search for NPD and USA Consumer data. Send only the fields you want to search.
| TOOL ID | DESCRIPTION |
|---|---|
| idleakcheck_npd | National Public Data Search |
| idleakcheck_usa | USA Consumer Data Search (Currently Disabled) |
first_name, middle_name, last_name, email, phone, street, city, state, zip, dob, ssn
curl -X POST "https://breachlookup.com/api" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: YOUR_KEY" \
-d '{
"tool": "idleakcheck_npd",
"first_name": "John",
"middle_name": "Stephen",
"last_name": "Smith",
"email": "[email protected]",
"phone": "(682) 215-2739",
"street": "2494 MEADOW PARK CIR 302",
"city": "Bedford",
"state": "TX",
"zip": "76021",
"dob": "1953-10-03",
"ssn": "462-88-1616"
}'
Deep email and phone reconnaissance.
curl -X POST "https://breachlookup.com/api" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: YOUR_KEY" \
-d '{
"tool": "osintcat_unified",
"osintcat_mode": "email",
"query": "[email protected]"
}'
Search compromised credentials.
curl -X POST "https://breachlookup.com/api" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: YOUR_KEY" \
-d '{
"tool": "leakcheck_unified",
"leakcheck_mode": "auto",
"query": "username123"
}'
Unified gateway to access 50+ specialized OSINT tools. Our system automatically detects input types (Email/IP/Phone) for most modules.
tool to "breach_rip".breachrip_provider (e.g., "osintcat").breachrip_mode (e.g., "discord").query field.curl -X POST "https://breachlookup.com/api" \
-H "Content-Type: application/json" \
-H "X-Secret-Key: YOUR_KEY" \
-d '{
"tool": "breach_rip",
"breachrip_provider": "indicia_intel",
"breachrip_mode": "person",
"query": "John Doe",
"city": "New York",
"state": "NY"
}'