REST API for breach search, IP intelligence, and OSINT lookups. Pro and Elite plans include API access.
https://lurk.st/apiInclude your token in the Authorization header:
Authorization: Bearer YOUR_TOKEN/api/searchrequires tokenSearch breach data, IP intelligence, domain info, or username OSINT.
{
"query": "email@example.com",
"type": "email" // email | username | ip | domain | hash
}{
"results": {
"exposure": [...],
"surface": [...],
"signal": [...],
"spread": [...],
"trace": {...},
"compromise": [...]
},
"plan": "pro",
"remaining_searches": 2499
}/api/token/verifyVerify a token and check its plan and usage.
{
"token": "your_token_here"
}{
"valid": true,
"plan": "pro",
"usage": {
"used": 3,
"remaining": 2497,
"limit": 2500
}
}