Input a company name. Get back the verified website URL instantly. Enrich thousands of CRM records, clean dirty lead lists, and automate prospecting — all via one API call.
# Find a company's website from its name curl -X POST "https://api.linkfinderai.com" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"type":"company_name_to_website","input_data":"Stripe"}' # Chain it — get phone number too curl -X POST "https://api.linkfinderai.com" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"type":"company_name_to_phone","input_data":"Stripe"}' # Or get LinkedIn company URL curl -X POST "https://api.linkfinderai.com" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"type":"company_name_to_linkedin_url","input_data":"Stripe"}'
import requests API_KEY = "YOUR_API_KEY" H = {"Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json"} # Enrich a list of company names with their websites companies = ["Stripe", "Notion", "HubSpot", "Intercom"] for company in companies: r = requests.post("https://api.linkfinderai.com", headers=H, json={ "type": "company_name_to_website", "input_data": company }) website = r.json().get("result") print(f"{company}: {website}") # Output: # Stripe: stripe.com # Notion: notion.so # HubSpot: hubspot.com
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()); // Enrich CRM contacts with missing websites const contacts = [ { name: 'Jane Smith', company: 'Stripe', website: '' }, { name: 'Marcus Chen', company: 'Notion', website: '' }, ]; for (const contact of contacts.filter(c => !c.website)) { const { result } = await post({ type: 'company_name_to_website', input_data: contact.company }); contact.website = result; console.log(`${contact.name} → ${result}`); }
{
"status": "success",
"result": "stripe.com"
}
// company_name_to_phone returns:
{
"status": "success",
"result": "+1-888-926-2289"
}
// company_name_to_linkedin_url returns:
{
"status": "success",
"result": "https://linkedin.com/company/stripe"
}
Most CRM exports have a company name but no website. Cleaning that manually takes hours. With the API, every missing website field fills itself — run it across 10,000 contacts in n8n without touching a single row.
You scraped 500 company names from a directory, an event sponsor list, or a LinkedIn search. Now you need websites, phones, LinkedIn pages. The API resolves all three in one n8n workflow — in under 10 minutes.
Sales ops, growth teams, and developers use this endpoint to enrich data at scale without manual research. Want to try it manually first? Free browser tool →
Thousands of records with company names but no websites. Run one workflow, fill every blank field. No CSV exports, no manual research.
Got a raw list of company names from a conference, directory, or LinkedIn search? Resolve websites, phones, and LinkedIn pages in one pass.
Website → LinkedIn URL → Employee list → Emails. Build the full prospecting chain starting from just a company name.
Verify websites already in your CRM are still active and correct. Cross-reference against live data rather than trusting stale records.
When a new lead signs up, trigger the API automatically. Their company website populates in your CRM before your rep even opens the record.
First step in any enrichment pipeline. Company name → website gives you the domain for email finding, tech stack analysis, and more.
One API call. One n8n node. Works with any tool that can make an HTTP request.
Sign up free. Your API key is in the dashboard under Settings. 25 free credits included — no credit card required.
In n8n, Make, or Zapier: POST to api.linkfinderai.com with your key and company name. No setup beyond that.
The API returns the verified website in ~1 second. Map it to your CRM field and the enrichment is done.
Manual research doesn't scale. One API call does the same job in 1 second.
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. One API call finds any company's website in under 1 second.
Get free API key