Skip to main content

hem_to_business_profile

Resolve a hashed email (MD5) or plaintext email to a full business profile including name, company, title, and contact info.

Updated this week

Parameters

Field

Type

Required

Description

params.name

string

Must be "hem_to_business_profile"

params.arguments.md5

string

MD5 hash of the email address (32 hex chars)

params.arguments.email

string

Plaintext email address (will be normalized and hashed)

params.arguments.include_mobile_phone

boolean

Also look up mobile phone number (costs an additional query)

params.arguments.skip_anonymize

boolean

Skip email anonymization even when plaintext email is not provided

Pass either md5 or email.

Request

curl --request POST \
--url https://app.moltsets.com/mcp/ \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "hem_to_business_profile",
"arguments": {
"md5": "5d41402abc4b2a76b9719d91101XXXXX", // or email
"email": "john-smith-123@example.com", // or md5
"include_mobile_phone": true
}
}
}'

Response

{
"jsonrpc": "2.0",
"id": null,
"result": {
"content": [
{
"type": "text",
"text": "{\"personal_emails\":[\"3018fe3a783fad1db0370ee3faXXXXX\"],\"current_company_linkedinurl\":\"https://www.linkedin.com/company/rb2b\",\"current_company\":\"acme.com\",\"current_company_url\":\"https://acme.com\",\"country\":\"United States\",\"company_employee_count\":\"1-10\",\"functional_area\":\"Information Technology\",\"work_email_confirmed\":\"a4cd87c390c98385297fbe9250fXXXXX\",\"company_employee_range\":\"1-10\",\"last_name\":\"Doe\",\"seniority\":\"Manager\",\"current_industry\":\"Information Technology\",\"first_name\":\"John\",\"linkedinurl\":\"https://www.linkedin.com/in/john-smith-123\",\"company_revenue_range\":\"$10M-$15M\",\"company_revenue\":\"$10M\",\"title\":\"Principal Cybersecurity Engineer\"}"
}
],
"isError": false
}
}
Did this answer your question?