Skip to Content

Find people profiles with Clado

Search through millions of LinkedIn profiles using natural language queries. This endpoint provides fast searching with AI-powered relevance matching.

ProviderBilling ModeCredentialsCost per result
Docs
P
Clado
Per Search
Managed, User

3.00 credits

Output Fields

string
company_name
string
company_profile_url
string
job_title
string
profile_url
json
clado_person_match
  Enabled by default

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production', dedup: {strategy: 'default'}},
    searches: [
      {
        search_id: 'people:profiles:clado@1',
        config: {limit: 100, filters: {query: 'Go-to-market specialists in Rome, Italy.'}}
      }
    ]
  })
};

fetch('https://api.pipe0.com/v1/searches/run', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));