Search through millions of LinkedIn profiles using natural language queries. This endpoint provides fast searching with AI-powered relevance matching.
Provider | Credentials | Cost per result Docs |
---|---|---|
P Clado | Managed | 0.1 credits |
const result = await fetch("https://api.pipe0.com/v1/searches/run", {
method: "POST",
headers: {
"Authorization": `Bearer ${API_KEY}`,
},
body: JSON.stringify({
searches: [{
search_id: "people:profiles:clado@1",
}],
config: {
"limit": 20,
"output_fields": {
"company_name": {
"alias": ""
},
"company_profile_url": {
"alias": ""
},
"company_industry": {
"alias": ""
},
"job_title": {
"alias": ""
},
"name": {
"alias": ""
},
"profile_headline": {
"alias": ""
},
"profile_url": {
"alias": ""
}
},
"filters": {
"query": ""
}
}
})
});