/v1/actions/linkedin-find-company-url/run/liveFind Company Url resolves a company name or partial identifier into a canonical LinkedIn company URL you can hand to any downstream action. You give it "Stripe" or "stripe-inc" or a messy CRM string, and it returns the stable /company/{vanity}/ URL with basic disambiguation metadata.
It runs on the LinkedIn level and uses your connected LinkedIn session to match against LinkedIn's own company index.
You send a name, domain fragment, or partial vanity. Edges authenticates the request with your LinkedIn session, runs a lookup against LinkedIn's company search, and returns the best-ranked match plus a short list of candidates. The action runs on Edges infrastructure with safe pacing, so you do not manage cookies or retries yourself.
Resolution is deterministic enough to drop into an ETL job — when the top match scores above a confidence threshold, Edges returns a single canonical URL; otherwise it returns the candidate list so your workflow can branch on it.
Use Find Company Url any time the input side of your workflow has company names or fragments but not canonical URLs — which is every time you pull from a CRM, an event registration list, or a CSV someone emailed you. It plugs into the LinkedIn profile & company data API use case as the resolution primitive that makes the rest of the pipeline possible.
Running this action first removes the single biggest cause of downstream extraction failures: bad or ambiguous company URLs.
One per run. The action is a single-record primitive designed to sit inside per-row loops or CRM-triggered flows.
Your LinkedIn account. You connect LinkedIn to Edges once, and every resolution runs through that authenticated session.
Yes. The canonical companyUrl feeds directly into Extract LinkedIn Company Profile, Search LinkedIn Company Employees, and Extract LinkedIn Company Affiliates.
Add Find Company Url to any workflow that starts with raw company strings, or call it from the Edges API as a preprocessing step in your enrichment pipeline. Browse the full Actions library to see what to chain after resolution.
curl -X POST "https://api.edges.run/v1/actions/linkedin-find-company-url/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct",
"input": {
"address": "example_value",
"custom_data": "example_value",
"domain": "example_value",
"company_name": "example_value"
}
}'{
"linkedin_company_url": "https://www.linkedin.com/in/example-profile"
}