Parameters
Field | Type | Required | Description |
|
| ✓ | Must be |
|
| — | MD5 hash of the email address (32 hex chars) |
|
| — | Plaintext email address (will be normalized and hashed) |
|
| — | Also look up mobile phone number (costs an additional query) |
|
| — | 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": "[email protected]", // 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
}
}