Cambodia's premier OSINT API for security researchers, threat intelligence teams, and cybersecurity professionals. Fast, secure, and reliable data breach search with local payment support.
Enterprise-grade features designed for professionals
Choose the plan that fits your needs. All plans include full API access.
Contact @yunaonthetp for payment instructions
Simple, powerful REST API with instant results
Search across 2.8+ billion records. Supports email, username, phone, IP, and password hashes.
{
"query": "user@example.com",
"limit": 100,
"lang": "en"
}
X-API-Key: your_api_key_here Content-Type: application/json
{
"success": true,
"query": "user@example.com",
"total_results": 3,
"results": [
{
"database": "ULP-API",
"info": "2024 Collection",
"records": [...]
}
]
}
Check API key status and subscription details
curl -H "X-API-Key: your_key" https://api.blaxkmira128.workers.dev/validate-key
curl -X POST "https://api.blaxkmira128.workers.dev/search" \ -H "X-API-Key: your_key" \ -H "Content-Type: application/json" \ -d '{"query":"target@example.com"}'
import requests response = requests.post( "https://api.blaxkmira128.workers.dev/search", headers={"X-API-Key": "your_key"}, json={"query": "target@example.com"} ) print(response.json())
fetch('https://api.blaxkmira128.workers.dev/search', { method: 'POST', headers: { 'X-API-Key': 'your_key' }, body: JSON.stringify({ query: 'target@example.com' }) }) .then(r => r.json()) .then(data => console.log(data));
$ch = curl_init('https://api.blaxkmira128.workers.dev/search'); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([ 'query' => 'target@example.com' ])); curl_setopt($ch, CURLOPT_HTTPHEADER, [ 'X-API-Key: your_key', 'Content-Type: application/json' ]); $response = curl_exec($ch);
req, _ := http.NewRequest("POST", "https://api.blaxkmira128.workers.dev/search", bytes.NewBuffer(jsonBody)) req.Header.Set("X-API-Key", "your_key")