linkedin_to_mobile_phone is the only phone endpoint in the API. It takes a LinkedIn profile and returns a carrier-verified mobile number with the date it was last verified.
Mobile only, by design
Only mobile numbers are returned — no landlines, no VoIP. Every result is a real device, which is what makes the output usable for SMS and direct dial rather than a switchboard you have to navigate. The practical consequence: contacts whose only number is a desk line simply won’t return a result. A miss here isn’t a data gap so much as a filter working as intended.Batch up to 100 per call
The endpoint takes either a single URL or a batch:
Batching is the single highest-leverage practice here. One call for 100 profiles instead of 100 calls cuts your request count by 99%, which matters because every request counts toward your rate limit regardless of whether it returns data.
Budget external tokens first
A 100-profile batch that resolves fully costs 1,000 external tokens. Plan runs against your balance before you start:get_account and get_billing are free and never cost tokens. Read external_token_balance before a large run so a job doesn’t stall halfway through.
You’re only charged for results that come back — profiles with no mobile on file cost nothing.
Qualify before you enrich
Because this is the priciest per-result lookup, it pays to narrow the list before calling it rather than after. Run your people search filters first and enrich only the contacts you’d actually call:search_peoplewithseniority,department, and location filters- Review
results.totaland tighten until the list is the size you intend to work - Batch the resulting LinkedIn URLs into
linkedin_to_mobile_phone, 100 at a time
Read the validation date
last_validated_at is the date the number was last confirmed active and in service.
Unlike email, MoltSets does not assign a risk score or confidence grade to phone numbers. The validation date is the signal — a number confirmed last week carries more confidence than one confirmed a year ago, and it’s your call how much weight to give it. See Understanding Phone Number Validation.
Related
Phone Number Validation
What the validation date does and doesn’t tell you.
Rate Limits
Batching, backoff, and per-plan ceilings.
