Skip to main content
POST
/
actions
/
linkedin-find-profile-url
/
run
/
live
Run linkedin-find-profile-url action live
curl --request POST \
  --url https://api.edges.run/v1/actions/linkedin-find-profile-url/run/live \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "input": {
    "full_name": "<string>",
    "company_name": "<string>",
    "domain": "<string>",
    "job_title": "<string>",
    "custom_data": {}
  }
}
'
const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
input: {
full_name: '<string>',
company_name: '<string>',
domain: '<string>',
job_title: '<string>',
custom_data: {}
}
})
};

fetch('https://api.edges.run/v1/actions/linkedin-find-profile-url/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/linkedin-find-profile-url/run/live"

payload = { "input": {
"full_name": "<string>",
"company_name": "<string>",
"domain": "<string>",
"job_title": "<string>",
"custom_data": {}
} }
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "linkedin_profile_url": "<string>"
}
This action uses AI to automatically find LinkedIn profile URLs for individuals based on their name. Simply provide a person’s name, and the action will search and return their LinkedIn profile URL.

Authorizations

X-API-Key
string
header
required

Body

application/json
input
object
required

Response

Successful response

linkedin_profile_url
string<url>