Cambodia's #1 Data Breach API
System Operational

Ultimate Leak Protection API

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.

99.9% Uptime SLA
< 50ms Global Latency
2.8B+ Records
24/7 Khmer Support

Why Choose ULP-API

Enterprise-grade features designed for professionals

Lightning Fast
Sub-50ms response times with global edge deployment
Secure & Private
End-to-end encryption, no logs policy, anonymous queries
Massive Database
2.8+ billion unique records from verified breach sources
Developer Friendly
RESTful API with JSON responses, 10+ language examples
Local Payments
KHQR, ABA Bank, Crypto (USDT, TON) accepted
Khmer Support
24/7 Telegram support in Khmer and English

Flexible Pricing

Choose the plan that fits your needs. All plans include full API access.

Test Plan
$1.5 / 3 Days
Perfect for testing and evaluation
  • Full API Access
  • 100 Queries/Day
  • Email Support
  • Standard Rate Limit
Get Started
1 Year Access
$40 / Year
Save 67% with annual billing
  • Everything in VIP
  • Unlimited Queries
  • Priority Support
  • API Key Rotation
  • Custom Integration Help
Get Yearly
Lifetime Access
$80 One Time
Pay once, use forever
  • Everything in VIP
  • Lifetime Updates
  • Dedicated Support
  • Custom Features
  • White Label Options
Get Lifetime

Accepted Payment Methods

Cambodia

KHQR
ABA Bank
Wing
TrueMoney

Crypto

USDT (TRC20)
TON Coin
ETH
BTC

Global

PayPal
Visa/MC
Gift Cards

Contact @yunaonthetp for payment instructions

API Documentation

Simple, powerful REST API with instant results

POST /search

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": [...]
    }
  ]
}
GET /validate-key

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")

Live API Tester