OSINT
Email OSINT signals API
Return local email OSINT signals: normalized local part, domain, Gravatar hash URL, role-account flag, and disposable-domain hint.
Price$0.01per request
MethodGET
Route/v1/osint/email
StatusLive
MIME typeapplication/json
Rate limit180/minute
Cache3600s public
osintemailgravatarhashidentity
API URL
Integration docshttps://x402.hexl.dev/v1/osint/emailExample request
{
"email": "security@example.com"
}Example response
{
"email": "security@example.com",
"domain": "example.com",
"roleAccount": true,
"provider": "local-email-osint"
}Input schema
{
"type": "object",
"required": [
"email"
],
"properties": {
"email": {
"type": "string",
"minLength": 3
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}