Run salesnavigator-extract-people action live
curl --request POST \
--url https://api.edges.run/v1/actions/salesnavigator-extract-people/run/live \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"input": {
"sales_navigator_profile_url": "<string>",
"custom_data": {}
},
"identity_ids": [
"44444444-4444-4444-4444-444444444444"
],
"identity_mode": "direct"
}
'const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
input: {sales_navigator_profile_url: '<string>', custom_data: {}},
identity_ids: ['44444444-4444-4444-4444-444444444444'],
identity_mode: 'direct'
})
};
fetch('https://api.edges.run/v1/actions/salesnavigator-extract-people/run/live', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.edges.run/v1/actions/salesnavigator-extract-people/run/live"
payload = {
"input": {
"sales_navigator_profile_url": "<string>",
"custom_data": {}
},
"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){
"sales_navigator_profile_id": "<string>",
"sales_navigator_profile_url": "<string>",
"linkedin_profile_id": 123,
"linkedin_profile_handle": "<string>",
"linkedin_profile_url": "<string>",
"profile_image_url": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"location": "<string>",
"email": "<string>",
"phone": "<string>",
"website": "<string>",
"twitter": "<string>",
"description": "<string>",
"headline": "<string>",
"summary": "<string>",
"job_title": "<string>",
"company_name": "<string>",
"sales_navigator_company_id": 123,
"sales_navigator_company_url": "<string>",
"linkedin_company_id": 123,
"linkedin_company_url": "<string>",
"linkedin_people_post_search_url": "<string>",
"current_job_time_period": "<string>",
"connection_degree": 123,
"number_connections": 123,
"recently_hired": true,
"recently_promoted": true,
"school_name": "<string>",
"linkedin_school_url": "<string>",
"sales_navigator_school_url": "<string>",
"languages": [
"<string>"
],
"volunteer_experiences": [
{
"role": "<string>",
"company_name": "<string>",
"description": "<string>",
"date": "<string>"
}
],
"educations": [
{
"school_name": "<string>",
"school_url": "<string>",
"date": "<string>",
"title": "<string>",
"degree_name": "<string>",
"field_of_study": "<string>",
"linkedin_school_id": 123,
"company_logo_url": "<string>"
}
],
"experiences": [
{
"title": "<string>",
"company_name": "<string>",
"company_url": "<string>",
"description": "<string>",
"linkedin_company_url": "<string>",
"location": "<string>",
"linkedin_company_id": 123,
"date": "<string>",
"job_time_period": "<string>",
"company_logo_url": "<string>"
}
],
"past_company_name": "<string>",
"past_job_title": "<string>",
"past_sales_navigator_company_id": 123,
"past_linkedin_company_id": 123,
"past_linkedin_company_url": "<string>",
"skills": [
{
"name": "<string>"
}
]
}Extract Sales Navigator People
Extract Sales Navigator People
Extract a Sales Navigator lead profile by profile URL or Sales Navigator profile ID.
POST
/
actions
/
salesnavigator-extract-people
/
run
/
live
Run salesnavigator-extract-people action live
curl --request POST \
--url https://api.edges.run/v1/actions/salesnavigator-extract-people/run/live \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"input": {
"sales_navigator_profile_url": "<string>",
"custom_data": {}
},
"identity_ids": [
"44444444-4444-4444-4444-444444444444"
],
"identity_mode": "direct"
}
'const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
input: {sales_navigator_profile_url: '<string>', custom_data: {}},
identity_ids: ['44444444-4444-4444-4444-444444444444'],
identity_mode: 'direct'
})
};
fetch('https://api.edges.run/v1/actions/salesnavigator-extract-people/run/live', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.edges.run/v1/actions/salesnavigator-extract-people/run/live"
payload = {
"input": {
"sales_navigator_profile_url": "<string>",
"custom_data": {}
},
"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){
"sales_navigator_profile_id": "<string>",
"sales_navigator_profile_url": "<string>",
"linkedin_profile_id": 123,
"linkedin_profile_handle": "<string>",
"linkedin_profile_url": "<string>",
"profile_image_url": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"location": "<string>",
"email": "<string>",
"phone": "<string>",
"website": "<string>",
"twitter": "<string>",
"description": "<string>",
"headline": "<string>",
"summary": "<string>",
"job_title": "<string>",
"company_name": "<string>",
"sales_navigator_company_id": 123,
"sales_navigator_company_url": "<string>",
"linkedin_company_id": 123,
"linkedin_company_url": "<string>",
"linkedin_people_post_search_url": "<string>",
"current_job_time_period": "<string>",
"connection_degree": 123,
"number_connections": 123,
"recently_hired": true,
"recently_promoted": true,
"school_name": "<string>",
"linkedin_school_url": "<string>",
"sales_navigator_school_url": "<string>",
"languages": [
"<string>"
],
"volunteer_experiences": [
{
"role": "<string>",
"company_name": "<string>",
"description": "<string>",
"date": "<string>"
}
],
"educations": [
{
"school_name": "<string>",
"school_url": "<string>",
"date": "<string>",
"title": "<string>",
"degree_name": "<string>",
"field_of_study": "<string>",
"linkedin_school_id": 123,
"company_logo_url": "<string>"
}
],
"experiences": [
{
"title": "<string>",
"company_name": "<string>",
"company_url": "<string>",
"description": "<string>",
"linkedin_company_url": "<string>",
"location": "<string>",
"linkedin_company_id": 123,
"date": "<string>",
"job_time_period": "<string>",
"company_logo_url": "<string>"
}
],
"past_company_name": "<string>",
"past_job_title": "<string>",
"past_sales_navigator_company_id": 123,
"past_linkedin_company_id": 123,
"past_linkedin_company_url": "<string>",
"skills": [
{
"name": "<string>"
}
]
}1 credit per result · credit_ratio 1 · Credit costs
Sales Navigator profile enrichments 0–700 / 24 h · Action limits
To run LinkedIn actions, you must first create an identity and connect a LinkedIn
account, either using our Chrome
Extension,
username/password login, or Managed
Accounts to run without connecting an account.
Authorizations
Body
application/json
- Option 1
- Option 2
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.
Example:
["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
Available options:
direct, auto, managed Response
Successful response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes

