AI-powered intelligence platform. People search, business verification, and deep OSINT — all through one API.
Username, email, or phone to full digital profile. Social media, breach history, public records.
Carrier lookup, CNAM caller ID, fraud scoring, location approximation, line type detection.
Company registration, domain WHOIS, technology stack, employee count, financial indicators.
Email validation, disposable email detection, IP reputation, proxy/VPN detection, risk scoring.
One endpoint, any search type. JSON in, JSON out.
curl -X POST https://api.ezaiq.com/v1/search \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{"query": "johndoe", "type": "username"}'
// Response
{
"profiles": [
{"platform": "github", "url": "...", "verified": true},
{"platform": "twitter", "url": "...", "verified": true},
{"platform": "instagram", "url": "...", "verified": false}
],
"breaches": 3,
"risk_score": 0.42,
"confidence": 0.89
}