Find LinkedIn Profiles
A practical guide to quickly locate official LinkedIn home‑page URLs for companies or people
This tutorial will show you how to build find the LinkedIn profile of a company or an individual using Linkup.
What We’ll Build
This tutorial will show you how to build find the LinkedIn profile of a company or an individual using Linkup.
- Input: Any text prompt that describes the profile you’re after (company, school, person, etc.).
- Process:
- Send the prompt to the Linkup API with
depth="standard"
. - Ask for sourcedAnswer output so we can inspect citations.
- Decide whether we’re ≥ 99 % sure.
- Send the prompt to the Linkup API with
- Output: A single LinkedIn URL or
undefined
.
This pattern is perfect for enriching CRMs, onboarding forms, or internal tools where you need fast links with a very low false‑positive rate.
How To Build
Install the SDK
Make the API Call
Craft Better Prompts
For best accuracy, include at least two unique signals:
✅ Good signal | 📝 Example |
---|---|
Official domain | ”(their website is acme.com)“ |
City or region | ”based in Berlin, Germany” |
Stock ticker | ”listed on NASDAQ : ACME” |
Unique slogan/tagline | ”company slogan ‘Think tangerine’” |
Tip: Keep the “Return only the LinkedIn home‑page URL…” and the 99 % clause; it gives the model explicit, measurable instructions.
Batch Lookup
Need to process a list of companies? Here’s a tiny batch helper:
Advanced Enhancements
- Fallback to Deep Search: Retry with
depth="deep"
when standard depth yieldsundefined
. - Multiple Entities: Adjust the prompt to return an array of URLs when searching generic terms like “Acme Inc”.
- Integrate with CRMs: Enrich company records automatically, then store URL + confidence + timestamp.
- Rate Limiting: Use
asyncio
/Promise.allSettled
with a limiter when batch‑processing thousands.
Conclusion
With fewer than 20 lines of code you now have a LinkedIn‑URL resolver that’s fast, accurate, and completely configurable. Plug it into sign‑up flows, prospecting pipelines, or internal dashboards—and never copy‑paste a LinkedIn link again.
Facing issues? Reach out to our engineering team at support@linkup.so or via our Discord.