Skip to main content
GET
/
api
/
v1
/
kyc
/
email
Email Reputation
curl --request GET \
  --url https://api.dojah.io/api/v1/kyc/email \
  --header 'AppId: <appid>' \
  --header 'Authorization: <api-key>'
{
  "entity": {
    "email": "johndoe@gmail.com",
    "reputation": "high",
    "suspicious": false,
    "references": 181,
    "details": {
      "blacklisted": false,
      "malicious_activity": false,
      "malicious_activity_recent": false,
      "credentials_leaked": true,
      "credentials_leaked_recent": false,
      "data_breach": true,
      "first_seen": "07/01/2008",
      "last_seen": "09/13/2021",
      "domain_exists": true,
      "domain_reputation": "n/a",
      "new_domain": false,
      "days_since_domain_creation": 9552,
      "suspicious_tld": false,
      "spam": false,
      "free_provider": true,
      "disposable": false,
      "deliverable": true,
      "accept_all": false,
      "valid_mx": true,
      "primary_mx": "gmail-smtp-in.l.google.com",
      "spoofable": true,
      "spf_strict": true,
      "dmarc_enforced": false,
      "profiles": [
        "linkedin",
        "twitter"
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.dojah.io/llms.txt

Use this file to discover all available pages before exploring further.

AppId
string
required
Application ID from dashboard

Query parameter

email
string
required
desired email

RESPONSES

200
json
json
400
Object
401
Object
{
  "entity": {
    "email": "johndoe@gmail.com",
    "reputation": "high",
    "suspicious": false,
    "references": 181,
    "details": {
      "blacklisted": false,
      "malicious_activity": false,
      "malicious_activity_recent": false,
      "credentials_leaked": true,
      "credentials_leaked_recent": false,
      "data_breach": true,
      "first_seen": "07/01/2008",
      "last_seen": "09/13/2021",
      "domain_exists": true,
      "domain_reputation": "n/a",
      "new_domain": false,
      "days_since_domain_creation": 9552,
      "suspicious_tld": false,
      "spam": false,
      "free_provider": true,
      "disposable": false,
      "deliverable": true,
      "accept_all": false,
      "valid_mx": true,
      "primary_mx": "gmail-smtp-in.l.google.com",
      "spoofable": true,
      "spf_strict": true,
      "dmarc_enforced": false,
      "profiles": [
        "linkedin",
        "twitter"
      ]
    }
  }
}