/v1/actions/salesnavigator-search-saved-companies/run/liveSearch Saved Companies reads the account list you've saved in Sales Navigator and returns it as a structured array so you can sync your ABM accounts to the CRM, outreach tools, or a warehouse. You get every saved company along with the metadata Sales Navigator attaches: industry, size, location, and the saved-list it belongs to.
This action runs on the Sales Navigator level and targets revenue and RevOps teams who manage target accounts inside Sales Navigator but need that list available everywhere else.
You call Search Saved Companies against the Sales Navigator account you connected to Edges. Edges reads your saved-accounts index through that authenticated session, paginates through the list, and returns a normalized payload — one row per saved company, with the Sales Navigator company ID attached so you can chain further actions.
It runs on Edges infrastructure, browser-less and rate-limited safely. Async mode is available for large saved lists; for typical volumes, live execution returns in a single round trip.
Use Search Saved Companies when Sales Navigator is the source of truth for your ABM list but downstream systems need that list too. It plugs into the LinkedIn people & companies data API use case — a single primitive that keeps CRM, warehouse, and outreach in sync with what reps save in Sales Navigator.
It also works as a recurring job that flags new saves to the rest of the stack.
The action paginates through the full saved index for the account, typically thousands of rows. For very large lists, filter by saved-list name to keep runs tight.
Your own seat. Edges signs the request with the Sales Navigator account you connected, so the saved list returned is exactly what that user sees when they open Sales Navigator.
Yes. Common chains include Search Saved Companies → Extract Sales Navigator Accounts List for extra metadata, or → Search Sales Navigator Company Employees to fan out into people lists per account.
Run Search Saved Companies from the Edges library, wire it into your CRM sync job, or call it directly from the Edges API. Browse the full Actions library to see what to chain after the sync.
curl -X POST "https://api.edges.run/v1/actions/salesnavigator-search-saved-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"
}
]