Find a JSON representation of a persons LinkedIn profile data by their work email address.
const result = await fetch("https://api.pipe0.com/v1/run/sync", {
method: "POST",
headers: {
"Authorization": `Bearer ${API_KEY}`,
},
body: JSON.stringify({
pipes: [{
pipe_id: "people:professionalprofile:waterfall@1",
}],
input: []
})
});