Enrich a lead from just an email.
Turn a bare email address into a usable profile — deliverability, the company behind the domain, a public name and photo, and SEC data if they're a public company.
- Email Validator5 cr
- MX Lookup5 cr
- WHOIS Lookup10 cr
- Gravatar Lookup1 cr
- Company Lookup1 cr
A signup or contact form often gives you nothing but an email. Routing, scoring, and personalizing that lead means knowing who's behind it — without making them fill out a longer form.
An enriched contact record you can score and route the moment a lead comes in, with no extra fields for the user to complete.
How the calls chain together
Every response below is a live sample from the actual API — nothing mocked.
Validate & split the email
Confirm it's real and separate the domain — the key to everything downstream.
Sample response
{
"creationDate": null,
"domain": "myspace.com",
"email": "[email protected]",
"username": "support",
"canConnect": true,
"hasTypo": false,
"isValid": true,
"isMxValid": true,
"isSmtpValid": true,
"isRegexValid": true,
"smtp": {
"valid": true,
"reason": "Connected"
},
"isCompanyEmail": true,
"isFreeEmail": false,
"checksum": 797
}Confirm deliverability
Look up the domain's mail servers to confirm the mailbox can actually receive.
Sample response
{
"domain": "yahoo.com",
"mx": [
{
"priority": 1,
"exchange": "mta7.am0.yahoodns.net"
},
{
"priority": 1,
"exchange": "mta6.am0.yahoodns.net"
},
{
"priority": 1,
"exchange": "mta5.am0.yahoodns.net"
}
]
}Profile the domain
Pull registration data — registrar, creation date, and org behind the domain.
Sample response
{
"domainName": "MYSPACE.COM",
"registryDomainID": "3877095_DOMAIN_COM-VRSN",
"createdDate": "1996-02-22T05:00:00Z",
"expiryDate": "2029-02-23T05:00:00Z",
"updatedDate": "2023-01-17T00:16:21Z",
"domainStatus": [
"client delete prohibited https://icann.org/epp#client delete prohibited",
"client renew prohibited https://icann.org/epp#client renew prohibited",
"client transfer prohibited https://icann.org/epp#client transfer prohibited",
"client update prohibited https://icann.org/epp#client update prohibited"
],
"dNSSEC": "unsigned",
"registrar": "GoDaddy.com, LLC",
"registrarIANAID": "146",
"registrarURL": "http://www.godaddy.com",
"registrarAbuseContactEmail": "[email protected]",
"registrarAbuseContactPhone": "tel:480-624-2505",
"nameServers": [
"ns-cloud-a2.googledomains.com",
"ns-cloud-a3.googledomains.com",
"ns-cloud-a4.googledomains.com",
"ns-cloud-a1.googledomains.com"
],
"domain": "myspace.com",
"fetchedAtUTC": "2025-12-17T01:54:05.069Z",
"tld": "com",
"statusFlags": [
{
"flag": "client",
"description": "delete prohibited https://icann.org/epp#client delete prohibited",
"link": "delete"
},
{
"flag": "client",
"description": "renew prohibited https://icann.org/epp#client renew prohibited",
"link": "renew"
},
{
"flag": "client",
"description": "transfer prohibited https://icann.org/epp#client transfer prohibited",
"link": "transfer"
},
{
"flag": "client",
"description": "update prohibited https://icann.org/epp#client update prohibited",
"link": "update"
}
],
"status": "active"
}Attach a public identity
Resolve the email to a public Gravatar profile — name, photo, location, and linked accounts.
Sample response
{
"profileUrl": "https://gravatar.com/apiverve",
"thumbnailUrl": "https://0.gravatar.com/avatar/08ccd5c0bdd88b0ac13f776a4f7914db",
"photos": [
{
"value": "https://0.gravatar.com/avatar/08ccd5c0bdd88b0ac13f776a4f7914db",
"type": "thumbnail"
}
],
"displayName": "APIVerve",
"aboutMe": "APIVerve stands out as a premier source for cloud-based API and Software-as-a-Service (SaaS) solutions catering to developers, startups and products.",
"currentLocation": "United States",
"company": "APIVerve",
"contactInfo": [
{
"type": "contactform",
"value": "apiverve.com/contact"
}
],
"accounts": [
{
"domain": "x.com",
"display": "@apivervehq",
"url": "https://x.com/apivervehq",
"verified": true,
"name": "X"
},
{
"domain": "github.com",
"display": "apivervehq",
"url": "https://github.com/apivervehq",
"verified": true,
"name": "GitHub"
},
{
"domain": "calendly.com",
"display": "apiverve",
"url": "https://calendly.com/apiverve",
"verified": true,
"name": "Calendly"
}
],
"username": "apiverve",
"accountCount": 3,
"verifiedAccountCount": 3
}Add firmographics
If the org is a public company, attach SEC data — exchange, sector, and industry.
Sample response
{
"ticker": "AAPL",
"cik": "0000320193",
"name": "Apple Inc.",
"tickers": [
"AAPL"
],
"exchanges": [
"Nasdaq"
],
"entityType": "operating",
"sic": "3571",
"sicDescription": "Electronic Computers",
"sector": "Manufacturing",
"category": "Large accelerated filer",
"stateOfIncorporation": "CA",
"fiscalYearEnd": "0928",
"ein": "942404110",
"phone": "408-996-1010",
"addresses": {
"mailing": {
"street1": "ONE APPLE PARK WAY",
"city": "CUPERTINO",
"stateOrCountry": "CA",
"zipCode": "95014"
},
"business": {
"street1": "ONE APPLE PARK WAY",
"city": "CUPERTINO",
"stateOrCountry": "CA",
"zipCode": "95014"
}
},
"formerNames": []
}