Skip to main content
POST
/
search_business_profile_by_name
Search Business Profile by Name
curl --request POST \
  --url https://api.moltsets.com/api/v1/tools/search_business_profile_by_name \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "John Smith",
  "company": "acme.com",
  "include_mobile_phone": true
}
'
{
  "results": {
    "full_name": "John Smith",
    "first_name": "John",
    "last_name": "Smith",
    "title": "VP of Engineering",
    "company": "Acme Inc",
    "company_domain": "acme.com",
    "linkedin_url": "https://linkedin.com/in/john-smith-123",
    "mobile_phone": "+15551234567",
    "firmographics": {
      "industry": "Software",
      "employee_count": "201-500",
      "revenue": "$50M-$100M"
    }
  },
  "status": "ok",
  "metadata": {
    "tokens_charged": 1,
    "tokens_remaining": "unlimited",
    "daily_results_remaining": 9876
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string

Full name (e.g. 'John Smith') — parsed into first and last name automatically.

first_name
string

First name (used if name is not provided).

last_name
string

Last name (used if name is not provided).

company
string

Company domain (e.g. 'acme.com') or URL (e.g. 'https://acme.com') — normalized to domain.

Example:

"acme.com"

company_domain
string

Alias for company — company domain or URL.

include_mobile_phone
boolean
default:false

Include mobile phone lookup (additional DynamoDB query).

Response

Success