Skip to main content
POST
/
linkedin_to_business_profile
LinkedIn to Business Profile
curl --request POST \
  --url https://api.moltsets.com/api/v1/tools/linkedin_to_business_profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "linkedin_url": "https://linkedin.com/in/retentionadam",
  "include_mobile_phone": false
}
'
{
  "results": {
    "first_name": "John",
    "last_name": "Smith",
    "full_name": "John Smith",
    "title": "Senior Associate - Technical Director",
    "seniority": "Senior",
    "linkedin_url": "https://linkedin.com/in/john-smith-123",
    "business_email": "john.smith@example.com",
    "personal_email": "john.smith@gmail.com",
    "personal_emails": [
      "john.smith@gmail.com"
    ],
    "mobile_phone": "5555555555",
    "country": "United States",
    "current_industry": "Information Technology",
    "company": {
      "name": "MoltSets",
      "website_url": "https://moltsets.com",
      "linkedin_url": "https://linkedin.com/company/moltsets",
      "industry": "Information Technology",
      "revenue": "1200000000"
    }
  },
  "status": "ok",
  "metadata": {
    "tokens_charged": 1,
    "tokens_remaining": 197
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.moltsets.com/llms.txt

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

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
Example:

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

include_mobile_phone
boolean
default:false

When true, attempts to include mobile phone in the response. Costs additional credits when data is found.

Response

Success