Developer Authentication
The breach.rip API uses a standard header-based authentication protocol. All requests must be authenticated using your unique API key found in your account dashboard. Never expose your API key in client-side code.
x-api-key custom header.curl -X POST "https://breach.rip/api/v1/search" \
-H "x-api-key: BR_LIVE_9283..." \
-H "Content-Type: application/json" \
-d '{"query": "admin@breach.rip", "type": "breaches"}'
Integration Guide
Learn how to seamlessly integrate breach.rip intelligence into your own security tools, web applications, or automated threat hunting pipelines.
async function lookupBreach(query) {
const response = await axios.post('https://breach.rip/api/v1/search', {
query: query,
type: 'breaches'
}, {
headers: { 'x-api-key': process.env.BREACH_API_KEY }
});
return response.data.results;
}
- Environment Variables: Always store your API key in secure environment variables (e.g., .env files).
- Proxy Requests: Always call the breach.rip API from your backend server. Do not call it from the browser (Frontend) to avoid key theft.
- Caching: Consider caching results for 24 hours to optimize credit usage for repeated queries.
- Error Handling: Implement robust retry logic for rate limits (HTTP 429).
Billing & Rate Limits
Our API is designed for high-performance security operations. Credit deduction only occurs on successful data retrieval.
If exceeded, a 5-minute block is automatically applied.
Breaches Search
Query over 15 billion records from 3,000+ historical data breaches. This endpoint provides deep exposure analysis including emails, usernames, and associated metadata.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"target@example.com","type":"breaches"}'
Stealer Logs
Access intelligence from modern malware infections (RedLine, Raccoon, Vidar). This endpoint extracts compromised credentials, system info, and browser session data.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"target_username","type":"stealer"}'
Passwords
Query directly against our massive password dictionary and dehashed database.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"example@gmail.com","type":"passwords"}'
Domains
Perform reconnaissance on target domains to extract linked subdomains and infrastructure details.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"example.com","type":"domains"}'
Discord ID
Resolve Discord Snowflakes (IDs) to extract historical usernames, avatar hashes, and linked accounts.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"123456789012345678","type":"discord"}'
Roblox
Extract deep account information for Roblox users, including historical data.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"target_username","type":"roblox"}'
Telegram
Investigate Telegram usernames or IDs to find linked phone numbers or historical aliases.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"target_user","type":"telegram"}'
IP Geolocation
Retrieve highly accurate geolocation data, ISP info, and ASN details for any IPv4/IPv6 address.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"8.8.8.8","type":"ip"}'
Phone Lookup
Cross-reference international phone numbers against telecommunication breaches and public records.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"+1234567890","type":"phone"}'
Melissa Identity
Deep identity resolution via Melissa intelligence networks. Validates and enriches contact identifiers.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"target@example.com","type":"melissa"}'
IntelX System ID
Lookup hardware metadata and environment characteristics using an IntelX System ID.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"67283122-710f-477c-82dd-2edb8db140ed","type":"intelx"}'
Shodan Lookup
Host metadata, network signature retrieval, and passive recon against internet-facing infrastructure. Accessed via a simple GET request.
-H "x-api-key: YOUR_KEY"
Cypher Dynamics
High-fidelity underground intel queries across specific categories: email, password, phone, username, ip, domain, asn.
-H "x-api-key: YOUR_KEY"
Username Search
Comprehensive lookup for historical username data, aliases, and associated breaches across the underground web.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"johndoe","type":"username"}'
GitHub OSINT
Extract deep intelligence from GitHub profiles, including associated email addresses, organization memberships, and repository metadata.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"username","type":"github"}'
TikTok OSINT
Retrieve profile information, verified status, and linked identifiers from TikTok accounts.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"tiktok_user","type":"tiktok"}'
Reddit Search
Analyze Reddit user history, identifying interests, activity patterns, and linked social context.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"reddit_user","type":"reddit"}'
Combo Lookup
Search through known combo-lists (user:pass pairs) for a specific target.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"target_email","type":"combo"}'
Hash Lookup
Reverse-lookup password hashes or generate hash signatures for comparison across leaked databases.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8","type":"hash"}'
IP WHOIS
Extract deep WHOIS information, including ownership and registration details for any IPv4 or IPv6 address.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"8.8.8.8","type":"whois"}'
Binlist (CC)
Look up Bank Identification Numbers (BIN) to identify credit card issuing banks, card types, and brands.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"453978","type":"binlist"}'
VIN Decoder
Decode Vehicle Identification Numbers (VIN) to extract vehicle specifications, history, and manufacturing data.
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"VIN_HERE","type":"vin"}'