Login Try for free
Free Guide

How to Find a Phone Number From LinkedIn

Go from a LinkedIn profile — or just a name and company — to a direct phone number. This guide covers both starting points in the app, plus how to chain the same two lookups through the API.

Works from a name or a LinkedIn URL Chainable via API Free to start

Full walkthrough: finding a phone number with LinkFinder AI · Powered by guidde

A direct phone number is one of the highest-intent pieces of contact data you can get on a lead — it skips the inbox entirely. The catch is that most sources only give you a name and a company, or a LinkedIn profile, neither of which is a phone number by itself.

LinkFinder AI closes that gap two ways: chain a name-and-company lookup straight into a phone number, or go directly from a LinkedIn profile URL if you already have one. This guide covers both paths in the dashboard, plus the equivalent two-endpoint API call for automating it.

1

Find a phone number from a name and company

When all you have is a lead's name and where they work, LinkFinder AI chains two lookups: name and company to LinkedIn URL, then that URL to a phone number.

1

Select Full Name as input, LinkedIn Profile URL as output

Go to linkfinderai.com. In the "Select data type" dropdown, choose Full Name; in "Select output type", choose LinkedIn Profile URL.

Open the Select data type dropdown Open the Select output type dropdown
2

Enter the lead's full name and company

Type the full name into the name field — for example, Sarah Johnson — then enter their company in the company field, for example, Salesforce.

Enter the lead's full name Enter the lead's company name
3

Click "Enrich Data" to get the LinkedIn URL

LinkFinder AI matches the name and company to a LinkedIn profile URL — you'll see a "Profile Data Found" notification with the result.

Click Enrich Data LinkedIn profile URL result found
4

Switch the lookup to LinkedIn URL → Phone Number

Reopen the data type dropdowns: this time choose LinkedIn Profile URL as the input and Phone Number as the output.

Reopen the data type dropdown Select Phone Number as the output type
5

Paste the LinkedIn URL and enrich again

Paste the profile URL from step 3 into the input field and click "Enrich Data" — the result is the lead's phone number, for example +1 317 500 2454.

Paste the LinkedIn profile URL Phone number result found
This chained lookup uses two enrichment steps — one to find the LinkedIn URL, one to find the phone number — so it costs 2 credits total.
2

Find a phone number directly from a LinkedIn URL

If you already have the lead's LinkedIn profile URL — from a search, a CRM record, or the step above — skip the name lookup and go straight to the phone number.

1

Select LinkedIn Profile URL as input, Phone Number as output

On linkfinderai.com, set the input type to LinkedIn Profile URL and the output type to Phone Number.

2

Paste the URL and click "Enrich Data"

Paste the profile URL you already have and run the lookup — the tool returns the matching phone number directly, with no LinkedIn search step first.

Starting from a LinkedIn URL you already have costs 1 credit instead of 2, since it skips the name-to-URL step.
3

Find a phone number programmatically via API

For developers who want to trigger both lookups from their own code, CRM, or automation tool instead of the dashboard.

1

Get your API key

Sign up for free — your key is in your dashboard under Settings → API Key. New accounts start with 25 credits.

2

Call lead_full_name_to_linkedin_url

Send a POST request with the lead's name and company to get their LinkedIn profile URL:

cURL
curl -X POST https://api.linkfinderai.com \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "lead_full_name_to_linkedin_url",
    "input_data": "Sarah Johnson",
    "company": "Salesforce"
  }'
3

Call linkedin_profile_to_phone with the resulting URL

Feed the LinkedIn URL from the first response into a second request to get the phone number:

cURL
curl -X POST https://api.linkfinderai.com \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "linkedin_profile_to_phone",
    "input_data": "https://www.linkedin.com/in/sarah-johnson"
  }'

Already have the LinkedIn URL? Call linkedin_profile_to_phone directly and skip the first request — that's 1 credit instead of 2.

The full endpoint reference, request/response shapes, and rate limits are documented on the API documentation page.

Tips for a higher match rate

Use the exact company name

"Salesforce" matches better than "SFDC" or a division name — the company name that appears on the lead's own LinkedIn profile works best.

Start from the URL when you have it

A direct LinkedIn URL lookup is faster and cheaper than a name-and-company chain — always check if you already have the profile link first.

Not every profile has a phone number

Phone data isn't available for every lead. If a lookup comes back empty, fall back to an email lookup from the same LinkedIn URL instead.

Re-verify before a big outreach push

Phone numbers change more often than emails. Re-run a lookup on your most important accounts before a call campaign.

Frequently Asked Questions

Yes. LinkFinder AI first matches the name and company to a LinkedIn profile URL, then uses that URL to look up the phone number — a chained lookup that runs in the same dashboard.
Yes. If you already have the LinkedIn profile URL, select it as the input type and Phone Number as the output — no name lookup needed first.
No. Phone numbers are only returned when they exist in a profile's associated data — not every LinkedIn profile has an accessible phone number, so match rates vary by industry and role.
Yes. Chain the lead_full_name_to_linkedin_url endpoint with linkedin_profile_to_phone — the first turns a name and company into a LinkedIn URL, the second turns that URL into a phone number.
Each lookup step costs 1 credit. Starting from a LinkedIn URL you already have costs 1 credit; starting from a name and company costs 2, since it runs the LinkedIn URL lookup first.

Find your first phone number free

Start from a name and company, a LinkedIn URL, or the API — start on the free plan, no credit card required.

Get started free

No credit card required · Free plan available · API on every plan

Explore more in LinkedIn Data, Scraping & APIs

See the full topic → LinkedIn Data, Scraping & APIs hub