curl --request POST \
--url https://api.edges.run/v1/flows/salesnavigator-search-people/run/async \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"inputs": [
{
"sales_navigator_profile_search_url": "<string>",
"custom_data": {
"meta": "<unknown>"
}
}
],
"steps": [],
"parameters": {
"salesnavigator-search-people": {},
"linkedin-extract-people-experiences": {},
"linkedin-extract-people-skills": {},
"linkedin-extract-people-educations": {},
"salesnavigator-visit-profile": {},
"linkedin-extract-people": {},
"linkedin-extract-company": {},
"fullenrich-enrich-people": {}
},
"identity_ids": [
"44444444-4444-4444-4444-444444444444"
],
"identity_mode": "direct"
}
'import requests
url = "https://api.edges.run/v1/flows/salesnavigator-search-people/run/async"
payload = {
"inputs": [
{
"sales_navigator_profile_search_url": "<string>",
"custom_data": { "meta": "<unknown>" }
}
],
"steps": [],
"parameters": {
"salesnavigator-search-people": {},
"linkedin-extract-people-experiences": {},
"linkedin-extract-people-skills": {},
"linkedin-extract-people-educations": {},
"salesnavigator-visit-profile": {},
"linkedin-extract-people": {},
"linkedin-extract-company": {},
"fullenrich-enrich-people": {}
},
"identity_ids": ["44444444-4444-4444-4444-444444444444"],
"identity_mode": "direct"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
inputs: [
{
sales_navigator_profile_search_url: '<string>',
custom_data: {meta: '<unknown>'}
}
],
steps: [],
parameters: {
'salesnavigator-search-people': {},
'linkedin-extract-people-experiences': {},
'linkedin-extract-people-skills': {},
'linkedin-extract-people-educations': {},
'salesnavigator-visit-profile': {},
'linkedin-extract-people': {},
'linkedin-extract-company': {},
'fullenrich-enrich-people': {}
},
identity_ids: ['44444444-4444-4444-4444-444444444444'],
identity_mode: 'direct'
})
};
fetch('https://api.edges.run/v1/flows/salesnavigator-search-people/run/async', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.edges.run/v1/flows/salesnavigator-search-people/run/async",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'inputs' => [
[
'sales_navigator_profile_search_url' => '<string>',
'custom_data' => [
'meta' => '<unknown>'
]
]
],
'steps' => [
],
'parameters' => [
'salesnavigator-search-people' => [
],
'linkedin-extract-people-experiences' => [
],
'linkedin-extract-people-skills' => [
],
'linkedin-extract-people-educations' => [
],
'salesnavigator-visit-profile' => [
],
'linkedin-extract-people' => [
],
'linkedin-extract-company' => [
],
'fullenrich-enrich-people' => [
]
],
'identity_ids' => [
'44444444-4444-4444-4444-444444444444'
],
'identity_mode' => 'direct'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.edges.run/v1/flows/salesnavigator-search-people/run/async"
payload := strings.NewReader("{\n \"inputs\": [\n {\n \"sales_navigator_profile_search_url\": \"<string>\",\n \"custom_data\": {\n \"meta\": \"<unknown>\"\n }\n }\n ],\n \"steps\": [],\n \"parameters\": {\n \"salesnavigator-search-people\": {},\n \"linkedin-extract-people-experiences\": {},\n \"linkedin-extract-people-skills\": {},\n \"linkedin-extract-people-educations\": {},\n \"salesnavigator-visit-profile\": {},\n \"linkedin-extract-people\": {},\n \"linkedin-extract-company\": {},\n \"fullenrich-enrich-people\": {}\n },\n \"identity_ids\": [\n \"44444444-4444-4444-4444-444444444444\"\n ],\n \"identity_mode\": \"direct\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.edges.run/v1/flows/salesnavigator-search-people/run/async")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"inputs\": [\n {\n \"sales_navigator_profile_search_url\": \"<string>\",\n \"custom_data\": {\n \"meta\": \"<unknown>\"\n }\n }\n ],\n \"steps\": [],\n \"parameters\": {\n \"salesnavigator-search-people\": {},\n \"linkedin-extract-people-experiences\": {},\n \"linkedin-extract-people-skills\": {},\n \"linkedin-extract-people-educations\": {},\n \"salesnavigator-visit-profile\": {},\n \"linkedin-extract-people\": {},\n \"linkedin-extract-company\": {},\n \"fullenrich-enrich-people\": {}\n },\n \"identity_ids\": [\n \"44444444-4444-4444-4444-444444444444\"\n ],\n \"identity_mode\": \"direct\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.edges.run/v1/flows/salesnavigator-search-people/run/async")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"inputs\": [\n {\n \"sales_navigator_profile_search_url\": \"<string>\",\n \"custom_data\": {\n \"meta\": \"<unknown>\"\n }\n }\n ],\n \"steps\": [],\n \"parameters\": {\n \"salesnavigator-search-people\": {},\n \"linkedin-extract-people-experiences\": {},\n \"linkedin-extract-people-skills\": {},\n \"linkedin-extract-people-educations\": {},\n \"salesnavigator-visit-profile\": {},\n \"linkedin-extract-people\": {},\n \"linkedin-extract-company\": {},\n \"fullenrich-enrich-people\": {}\n },\n \"identity_ids\": [\n \"44444444-4444-4444-4444-444444444444\"\n ],\n \"identity_mode\": \"direct\"\n}"
response = http.request(request)
puts response.read_body{
"uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflow": {
"uid": "<string>",
"metadata": {
"account_rotation": true
}
}
}{
"error_label": "<string>",
"error_scope": "input",
"error_ref": "ERR-12345",
"message": "<string>",
"status_code": 123,
"params": {},
"data": {}
}{
"error_label": "<string>",
"error_scope": "input",
"error_ref": "ERR-12345",
"message": "<string>",
"status_code": 123,
"params": {},
"data": {}
}{
"error_label": "<string>",
"error_scope": "input",
"error_ref": "ERR-12345",
"message": "<string>",
"status_code": 123,
"params": {},
"data": {}
}Sales Navigator Search People
Search for LinkedIn profiles using Sales Navigator and enrich them with additional data
curl --request POST \
--url https://api.edges.run/v1/flows/salesnavigator-search-people/run/async \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"inputs": [
{
"sales_navigator_profile_search_url": "<string>",
"custom_data": {
"meta": "<unknown>"
}
}
],
"steps": [],
"parameters": {
"salesnavigator-search-people": {},
"linkedin-extract-people-experiences": {},
"linkedin-extract-people-skills": {},
"linkedin-extract-people-educations": {},
"salesnavigator-visit-profile": {},
"linkedin-extract-people": {},
"linkedin-extract-company": {},
"fullenrich-enrich-people": {}
},
"identity_ids": [
"44444444-4444-4444-4444-444444444444"
],
"identity_mode": "direct"
}
'import requests
url = "https://api.edges.run/v1/flows/salesnavigator-search-people/run/async"
payload = {
"inputs": [
{
"sales_navigator_profile_search_url": "<string>",
"custom_data": { "meta": "<unknown>" }
}
],
"steps": [],
"parameters": {
"salesnavigator-search-people": {},
"linkedin-extract-people-experiences": {},
"linkedin-extract-people-skills": {},
"linkedin-extract-people-educations": {},
"salesnavigator-visit-profile": {},
"linkedin-extract-people": {},
"linkedin-extract-company": {},
"fullenrich-enrich-people": {}
},
"identity_ids": ["44444444-4444-4444-4444-444444444444"],
"identity_mode": "direct"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
inputs: [
{
sales_navigator_profile_search_url: '<string>',
custom_data: {meta: '<unknown>'}
}
],
steps: [],
parameters: {
'salesnavigator-search-people': {},
'linkedin-extract-people-experiences': {},
'linkedin-extract-people-skills': {},
'linkedin-extract-people-educations': {},
'salesnavigator-visit-profile': {},
'linkedin-extract-people': {},
'linkedin-extract-company': {},
'fullenrich-enrich-people': {}
},
identity_ids: ['44444444-4444-4444-4444-444444444444'],
identity_mode: 'direct'
})
};
fetch('https://api.edges.run/v1/flows/salesnavigator-search-people/run/async', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.edges.run/v1/flows/salesnavigator-search-people/run/async",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'inputs' => [
[
'sales_navigator_profile_search_url' => '<string>',
'custom_data' => [
'meta' => '<unknown>'
]
]
],
'steps' => [
],
'parameters' => [
'salesnavigator-search-people' => [
],
'linkedin-extract-people-experiences' => [
],
'linkedin-extract-people-skills' => [
],
'linkedin-extract-people-educations' => [
],
'salesnavigator-visit-profile' => [
],
'linkedin-extract-people' => [
],
'linkedin-extract-company' => [
],
'fullenrich-enrich-people' => [
]
],
'identity_ids' => [
'44444444-4444-4444-4444-444444444444'
],
'identity_mode' => 'direct'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.edges.run/v1/flows/salesnavigator-search-people/run/async"
payload := strings.NewReader("{\n \"inputs\": [\n {\n \"sales_navigator_profile_search_url\": \"<string>\",\n \"custom_data\": {\n \"meta\": \"<unknown>\"\n }\n }\n ],\n \"steps\": [],\n \"parameters\": {\n \"salesnavigator-search-people\": {},\n \"linkedin-extract-people-experiences\": {},\n \"linkedin-extract-people-skills\": {},\n \"linkedin-extract-people-educations\": {},\n \"salesnavigator-visit-profile\": {},\n \"linkedin-extract-people\": {},\n \"linkedin-extract-company\": {},\n \"fullenrich-enrich-people\": {}\n },\n \"identity_ids\": [\n \"44444444-4444-4444-4444-444444444444\"\n ],\n \"identity_mode\": \"direct\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.edges.run/v1/flows/salesnavigator-search-people/run/async")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"inputs\": [\n {\n \"sales_navigator_profile_search_url\": \"<string>\",\n \"custom_data\": {\n \"meta\": \"<unknown>\"\n }\n }\n ],\n \"steps\": [],\n \"parameters\": {\n \"salesnavigator-search-people\": {},\n \"linkedin-extract-people-experiences\": {},\n \"linkedin-extract-people-skills\": {},\n \"linkedin-extract-people-educations\": {},\n \"salesnavigator-visit-profile\": {},\n \"linkedin-extract-people\": {},\n \"linkedin-extract-company\": {},\n \"fullenrich-enrich-people\": {}\n },\n \"identity_ids\": [\n \"44444444-4444-4444-4444-444444444444\"\n ],\n \"identity_mode\": \"direct\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.edges.run/v1/flows/salesnavigator-search-people/run/async")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"inputs\": [\n {\n \"sales_navigator_profile_search_url\": \"<string>\",\n \"custom_data\": {\n \"meta\": \"<unknown>\"\n }\n }\n ],\n \"steps\": [],\n \"parameters\": {\n \"salesnavigator-search-people\": {},\n \"linkedin-extract-people-experiences\": {},\n \"linkedin-extract-people-skills\": {},\n \"linkedin-extract-people-educations\": {},\n \"salesnavigator-visit-profile\": {},\n \"linkedin-extract-people\": {},\n \"linkedin-extract-company\": {},\n \"fullenrich-enrich-people\": {}\n },\n \"identity_ids\": [\n \"44444444-4444-4444-4444-444444444444\"\n ],\n \"identity_mode\": \"direct\"\n}"
response = http.request(request)
puts response.read_body{
"uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workflow": {
"uid": "<string>",
"metadata": {
"account_rotation": true
}
}
}{
"error_label": "<string>",
"error_scope": "input",
"error_ref": "ERR-12345",
"message": "<string>",
"status_code": 123,
"params": {},
"data": {}
}{
"error_label": "<string>",
"error_scope": "input",
"error_ref": "ERR-12345",
"message": "<string>",
"status_code": 123,
"params": {},
"data": {}
}{
"error_label": "<string>",
"error_scope": "input",
"error_ref": "ERR-12345",
"message": "<string>",
"status_code": 123,
"params": {},
"data": {}
}Flow Steps
The flow executes steps in the following order:- Sales Navigator Search (required): Searches for people profiles based on your Sales Navigator search URL
-
Optional enrichment steps (can include any combination)
linkedIn-extract-people-skills: Extracts skills data from profileslinkedIn-extract-people-experiences: Extracts experience data from profileslinkedIn-extract-people-educations: Extracts education data from profilessalesnavigator-visit-profile: Visits each profile to extract additional data, including interests (always executed after the search if included)linkedin-extract-people: Extracts detailed LinkedIn profile information (sections, experiences, skills, highlights)linkedin-extract-company: Extracts company information for each profile’s current companyfullenrich-enrich-people: Enriches profiles with contact information (emails and/or phone numbers). Credit costs: 2 credits for emails, 20 credits for phones, 22 credits for both.
extract-linkedIn-people-skills, extract-linkedIn-people-experiences and extract-linkedIn-people-educations take precedence over those of linkedin-extract-people when present.fullenrich-enrich-people requires profile data from previous steps. If you include a step that has dependencies, the required steps will be automatically activated even if you don’t explicitly include them in your request body.Custom Data
Custom Data
inputs array can include an optional custom_data object. The only valid key inside custom_data is meta. Use meta to attach a free-form object (e.g. your own IDs, tags, or context) that will be passed through and available in the flow output.Example:"inputs": [
{
...
"custom_data": {
"meta": {
"foo": "bar",
"crm_id": 1234
}
}
}
]
meta as a workaround to ship this capability; a more solid implementation will follow soon without breaking changes.Basic search with managed identities
Basic search with managed identities
curl --request POST \
--url https://api.edges.run/v1/flows/salesnavigator-search-people/run/async \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <your-api-key>' \
--data '{
"inputs": [
{
"sales_navigator_profile_search_url": "https://www.linkedin.com/sales/search/people?keywords=software%20engineer&geoRegion=us:0"
}
],
"identity_mode": "managed"
}'
Full enrichment flow with custom steps
Full enrichment flow with custom steps
curl --request POST \
--url https://api.edges.run/v1/flows/salesnavigator-search-people/run/async \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <your-api-key>' \
--data '{
"steps": [
"salesnavigator-visit-profile",
"linkedin-extract-people",
"linkedin-extract-company",
"fullenrich-enrich-people"
],
"parameters": {
"salesnavigator-search-people": {
"max_results": 500,
"exclude_viewed_leads": true
},
"salesnavigator-visit-profile": {
"extract_interests": true
},
"linkedin-extract-people": {
"sections": true,
"experiences": true,
"skills": true,
"highlights": true
},
"fullenrich-enrich-people": {
"enrich_level": "emails_and_phones"
}
},
"inputs": [
{
"sales_navigator_profile_search_url": "https://www.linkedin.com/sales/search/people?keywords=CTO&geoRegion=us:0"
}
],
"identity_ids": ["44444444-4444-4444-4444-444444444444"]
}'
With webhook callback
With webhook callback
curl --request POST \
--url https://api.edges.run/v1/flows/salesnavigator-search-people/run/async \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <your-api-key>' \
--data '{
"inputs": [
{
"sales_navigator_profile_search_url": "https://www.linkedin.com/sales/search/people?keywords=VP%20Sales"
}
],
"identity_mode": "managed",
"callback": {
"url": "https://your-app.com/webhook/flow-results",
"headers": {
"Authorization": "Bearer your-webhook-token"
}
}
}'
Authorizations
Body
1 - 1000 elementsShow child attributes
Show child attributes
Optional list of step to run. If not provided, only the required steps will be run.
linkedin-extract-people-experiences, linkedin-extract-people-skills, linkedin-extract-people-educations, salesnavigator-visit-profile, linkedin-extract-people, linkedin-extract-company, fullenrich-enrich-people Show child attributes
Show child attributes
An array of Identity UUIDs linked to identities (e.g. LinkedIn) used to execute the Action. You must provide at least one valid UID with access to the integration. Do not use account_uid values — only user_uid is supported.
["44444444-4444-4444-4444-444444444444"]
If "auto", the Action will use any identities from the current workspace (unless you have provided a list of identity_ids). "managed" will use the Edges pool of identities for an extra credit cost
direct, auto, managed Show child attributes
Show child attributes
Callbacks
POST{$request.body#/callback/url}onSave
Body
Show child attributes
Show child attributes
Represents an error returned by the API. This schema defines the standard structure of error messages to ensure consistent error handling across the application.
Show child attributes
Show child attributes
Number of results in the current callback
Results of the current callback
Show child attributes
Show child attributes
Response
Callback successfully processed

