NEURAL API REFERENCE

Version 3.1 // Stable Build

Programmatic access to the BreachLookup intelligence grid. All endpoints require HTTPS and return JSON.

OMNI UNIVERSAL LOOKUP (NEW)

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]"
 }'

CORE TOOL REFERENCE

Pass the tool parameter in your JSON body to select a specific module.

TOOL ID REQUIRED INPUT DESCRIPTION
universalAuto-DetectOMNI Search (Runs multiple APIs)
osintsnow_unifiedEnter query...Unified OSINT Search
hudsonrock_unifiedQueryHudsonRock Intelligence
leakcheck_unifiedQueryLeakCheck Global
osintcat_unifiedQueryOSINTCat.com
idleakcheck_npdQueryNPD Search (USA)
idleakcheck_usaQueryUSA Consumer (Disabled)
live_emailEmail AddressLive Email Lookup
live_phonePhone NumberLive Phone Lookup
seon_emailEmail AddressSeon Email
seon_phonePhone NumberSeon Phone
keyscoreEmail or UsernameKeyScore
leakosintEmail or UsernameLeakOSINT
snusbaseEmail, User, Name, IPSnusbase
snusbase_ipIP AddressSnusbase IP
snusbase_hashMD5/SHA1Snusbase Hash
leakcheck_v2Email or UserLeakCheck v2
hackcheckEmailHackCheck
breachbaseEmail, User, DomainBreachBase
intelvaultQueryIntelVault
breachvipEmail or UserBreachVIP
akulaEmail or PhoneAkula
leaksightQueryLeakSight
dumpcat_initEmailDump.cat
inf0sec_leaksQueryInf0sec Leaks
inf0sec_discordDiscord QueryInf0sec Discord
inf0sec_npdName/SSNInf0sec NPD
inf0sec_domainDomainInf0sec Domain
inf0sec_usernameUsernameInf0sec Username
inf0sec_hlrPhoneInf0sec HLR
inf0sec_cfxQueryInf0sec CFX
intelfetch_courtFull NameCourt Records
rutify_rutRUT NumberRutify RUT
rutify_nameFull NameRutify Name
rutify_carLicense PlateRutify Car
rutify_siiRUT NumberRutify SII
melissaName or AddressMelissa
genesis_discordDiscord IDGenesis Discord
githubEmailGitHub Recon
discord_stalkerUser IDDiscord Stalker
room101UsernameRoom101 (Reddit)
tiktokUsernameTikTok OSINT
minecraftUsernameMinecraft
oathnet_robloxUser IDRoblox
oathnet_steamSteam IDSteam
oathnet_xboxGamertagXbox
shodan_hostIP AddressShodan Host
shodan_dnsDomainShodan DNS
shodan_exploitsQueryShodan Exploits
shodan_honeyIP AddressShodan Honeypot
intelfetch_ipIP AddressIntelFetch IP
intelfetch_domainDomainIntelFetch Domain
intelfetch_cryptoWallet AddrCrypto Wallet
intelx_unifiedSystem IDIntelX Archive
breach_ripSelect Provider & QueryBREACH.RIP Module

AUTHENTICATION

Include your Secret Key in the X-Secret-Key header.

POST https://breachlookup.com/api // Headers Content-Type: application/json X-Secret-Key: YOUR_32_CHAR_SECRET_KEY

HUDSONROCK INTEL

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"
 }'

IDLEAKCHECK INTEGRATION

Advanced Search for NPD and USA Consumer data. Send only the fields you want to search.

TOOL IDDESCRIPTION
idleakcheck_npdNational Public Data Search
idleakcheck_usaUSA Consumer Data Search (Currently Disabled)
JSON Body Parameters
first_name, middle_name, last_name, email, phone, street, city, state, zip, dob, ssn
CURL Example
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"
 }'

OSINTCAT ENGINE

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]"
 }'

LEAKCHECK GLOBAL

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"
 }'
PREMIUM

BREACH.RIP MODULE

Unified gateway to access 50+ specialized OSINT tools. Our system automatically detects input types (Email/IP/Phone) for most modules.

Integration Guide:
  • Set tool to "breach_rip".
  • Set breachrip_provider (e.g., "osintcat").
  • Set breachrip_mode (e.g., "discord").
  • Pass your target in the query field.
Example: Indicia Person Search
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"
 }'