/v1/actions/salesnavigator-search-companies/run/liveSearch Sales Navigator Companies extracts a list of accounts from a Sales Navigator company search so you can turn premium B2B filters into structured account lists. You get each account as a row — name, Sales Navigator URL, industry, headcount, HQ, revenue band when available — ready to load into your CRM or ABM stack. It targets sales teams, RevOps, and ABM owners who build target-account lists from Sales Navigator's deeper filter set.
The action runs on the Sales Navigator level and uses your authenticated Sales Navigator session on Edges.
You pass a Sales Navigator company search URL with any combination of filters (industry, headcount, HQ, revenue, technologies, intent signals) and Search Sales Navigator Companies walks the result pages on your behalf. Edges paginates, normalizes the rows, and returns a clean array of account objects with stable IDs.
Every request runs through your authenticated Sales Navigator session and is paced within LinkedIn's activity guidance, so your seat stays in good standing. The action supports async execution — the default choice for any multi-page search.
Reach for Search Sales Navigator Companies when your ABM or prospecting hypothesis needs Sales Navigator's richer filter set — revenue, hiring intent, technologies, growth signals — rather than what public LinkedIn search exposes. It is the natural starting point for any Sales Navigator-driven B2B workflow.
It plugs into the LinkedIn profile and company data API use case. Teams use it as the seed step and chain deeper extractions to turn each account into an actionable record.
It depends on how deep Sales Navigator paginates your search. Well-scoped queries typically return hundreds to low thousands; very broad queries hit Sales Navigator's pagination ceiling — tighten filters to capture more of the population.
Your Sales Navigator account. Every search is executed through the authenticated session you connect to Edges, so results match what your seat would see in the Sales Navigator UI.
Yes. Feed each companyId into Search Sales Navigator Company Employees, Extract Company, or Search Company Metrics for deeper account-level intelligence.
Run Search Sales Navigator Companies from the Edges library, schedule it against your ABM filter set, or call it directly from the Edges API to drive CRM syncs. Browse the full Actions library to see the Sales Navigator actions that chain downstream.
curl -X POST "https://api.edges.run/v1/actions/salesnavigator-search-companies/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct",
"input": {
"sales_navigator_company_search_url": "https://www.linkedin.com/in/example-profile",
"custom_data": "example_value"
}
}'[
{
"sales_navigator_search_url": "https://www.linkedin.com/in/example-profile",
"company_name": "Example Name",
"sales_navigator_company_url": "https://www.linkedin.com/in/example-profile",
"description": "example_value",
"category": "example_value",
"number_employees": "example_value",
"sales_navigator_employees_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_company_id": "example-123"
}
]