Search Sales Navigator Companies

Sales Navigator Company Search extracts a list of companies (Accounts) from a set of given criteria.

Edges is not related to LinkedIn and is not an official LinkedIn product.

API Endpoint

POST/v1/actions/salesnavigator-search-companies/run/live

Parameters

Request parameters

Input Parameters

Integration Parameters

Guide

What Search Sales Navigator Companies does

Search 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.

How it works

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.

When to use Search Sales Navigator Companies

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.

Use cases

  • ABM list building. Build a premium target-account list from Sales Navigator filters and sync it nightly to Salesforce.
  • Intent-driven prospecting. Filter on Sales Navigator intent signals and pull accounts where buying interest is already elevated.
  • Market mapping. Snapshot every company in a segment at a revenue band to track market evolution.
  • Segment expansion. When a saved search grows, diff it against last run to capture only the new accounts and queue them for outreach.
  • CRM hygiene. Reconcile your CRM account list against a canonical Sales Navigator segment to close data gaps.

Best practices

  • Validate with metrics first. Run Search Company Metrics before a full extraction to confirm the count is sane.
  • Resolve IDs to public LinkedIn. If your stack keys on the public LinkedIn company URL, chain a resolver step so Sales Navigator rows join cleanly.
  • Run async on deep searches. Multi-page pulls belong in async execution; live mode is for shallow probes.
  • Dedupe by `companyId`. The ID is the stable key for joining results across runs and for chaining into employee or metric actions.

Common questions

How many accounts can I extract per run?

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.

Does Search Sales Navigator Companies use my Sales Navigator account or a shared pool?

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.

Can I chain Search Sales Navigator Companies with other Edges actions?

Yes. Feed each companyId into Search Sales Navigator Company Employees, Extract Company, or Search Company Metrics for deeper account-level intelligence.

Get started

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.

Code Examples

bash
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"
  }
}'

Output Example

[
  {
    "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"
  }
]

Explore More Actions

Discover other powerful LinkedIn automation actions in our library.