Input a person's name and company. Get back their verified LinkedIn profile URL instantly. Enrich CRM contacts, build outreach lists, and automate LinkedIn prospecting — all via one API call.
# Find LinkedIn profile URL from name + company curl -X POST "https://api.linkfinderai.com" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "type": "linkedin_profile_url_finder", "input_data": "Jane Smith", "company": "Stripe" }' # Then enrich the profile with email curl -X POST "https://api.linkfinderai.com" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "type": "linkedin_profile_to_linkedin_info", "input_data": "https://linkedin.com/in/jane-smith-stripe" }'
import requests API_KEY = "YOUR_API_KEY" H = {"Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json"} # Enrich CRM contacts missing LinkedIn URLs contacts = [ {"name": "Jane Smith", "company": "Stripe"}, {"name": "Marcus Chen", "company": "Notion"}, ] for contact in contacts: r = requests.post("https://api.linkfinderai.com", headers=H, json={ "type": "linkedin_profile_url_finder", "input_data": contact["name"], "company": contact["company"] }) linkedin_url = r.json().get("result") print(f"{contact['name']}: {linkedin_url}")
const post = (body) => fetch('https://api.linkfinderai.com', { method: 'POST', headers: { 'Authorization': `Bearer ${API_KEY}`, 'Content-Type': 'application/json' }, body: JSON.stringify(body) }).then(r => r.json()); // Find LinkedIn URL then enrich with email in one chain async function enrichContact(name, company) { // Step 1: find LinkedIn URL const { result: linkedinUrl } = await post({ type: 'linkedin_profile_url_finder', input_data: name, company }); // Step 2: enrich with email const { result: profile } = await post({ type: 'linkedin_profile_to_linkedin_info', input_data: linkedinUrl }); return { name, linkedinUrl, email: profile.email }; } enrichContact('Jane Smith', 'Stripe').then(console.log);
{
"status": "success",
"result": "https://linkedin.com/in/jane-smith-stripe"
}
// After chaining with linkedin_profile_to_linkedin_info:
{
"status": "success",
"result": {
"name": "Jane Smith",
"email": "[email protected]",
"jobTitle": "Head of Sales, EMEA",
"company": "Stripe",
"location": "London, UK"
}
}
Most CRM exports have name and company but no LinkedIn URL. Finding those manually means hours on LinkedIn. The API resolves each one in ~2 seconds — run it across thousands of contacts in a single n8n workflow.
Got a list of conference speakers, event attendees, or job applicants with names and companies? Resolve every LinkedIn profile automatically, then chain to email enrichment. Ready for outreach in minutes.
Sales ops, recruiters, and growth teams use this endpoint to find LinkedIn profiles at scale without manual research. Want to try it manually first? Free browser tool →
Thousands of contacts with names and companies but no LinkedIn URL. One workflow fills every blank field automatically.
Conference, webinar, or award list → LinkedIn profiles → emails → personalised outreach. Full chain in one workflow.
Build candidate lists from job boards or referral lists. Resolve LinkedIn profiles and reach out without manual searching.
When a new lead fills your form, trigger the API automatically. Their LinkedIn profile appears in your CRM before the rep opens the record.
Name + company → LinkedIn URL → full profile + verified email. Two API calls, complete contact data, zero manual research.
Verify that LinkedIn URLs already in your CRM still point to the right person. Cross-reference live data against stale records.
One API call. Works with any tool that can make an HTTP request.
Sign up free. Your key is in the dashboard under Settings. 25 free credits — no credit card required.
POST to api.linkfinderai.com with name and company. No setup beyond that — works in n8n, Make, Zapier, or any HTTP client.
The verified LinkedIn profile URL arrives in ~2 seconds. Map it to your CRM field or chain to email enrichment.
Finding one profile takes 2 minutes. The API does it in 2 seconds, for thousands at once.
Ready to stop doing this manually?
Get free API keyReal reviews from verified customers — unfiltered.
★ Trustpilot"Very useful API for scraping LinkedIn without ban. Works like a charm. Amazingly fast and gives crazy correct data."
"Clean, easy to navigate, and delivers exactly what it promises. Saves a significant amount of manual effort."
"Does what I need, costs way less. I click around, get my results, move on. No tutorials needed, no feature bloat."
"So far everything has been very simple. No complex startups and all documentation is simple to follow."
Everything you need to know before plugging this into your stack.
25 free credits on sign-up. No credit card. Name + company in, LinkedIn URL out in 2 seconds.
Get free API key