Skip to main content
POST
/
enrich_email
LinkedIn to Best Email
curl --request POST \
  --url https://api.moltsets.com/api/v1/tools/enrich_email \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "linkedin_url": "https://linkedin.com/in/retentionadam"
}
'
{
  "results": {
    "email": "john.smith@example.com",
    "type": "business",
    "last_validated_at": null
  },
  "status": "ok",
  "metadata": {
    "tokens_charged": 1,
    "tokens_remaining": 28
  }
}

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token. Keys follow the format ms_XXXXXXXXXXX.

Body

application/json
linkedin_url
string
required

Full LinkedIn profile URL or slug.

Example:

"https://linkedin.com/in/retentionadam"

Response

Success

results
object
status
string
Example:

"ok"

metadata
object