Skip to main content
Version: Next

Find profile URLs

caution

Rate limits always apply on all routes. Check the dedicated page for more information.

Search for profile page one at a time

To find a single profile URL, you need to use the following route:

POSThttps://app.icypeas.com/api/url-search/profile
BODY PARAMS
firstname*string

First name of your prospect

lastname*string

Last name of your prospect

companyOrDomainstring(Can be empty if jobTitle is given)

It should contain either the company name or its domain name (or website)

jobTitlestring(Can be empty if companyOrDomain is given)

It should contain the job title of your prospect

/url-search/profile
{
"firstname": "Marc",
"lastname": "Lachabody",
"companyOrDomain": "nec technologies"
}
RESPONSES

Search for profile pages in bulk

To scrape multiple profile URLs in a batch, you need to use the following route:

POSThttps://app.icypeas.com/api/url-search
BODY PARAMS
type*string(should always be 'profile')

The type of data

data*array

An array containing the profiles' information. Max number of profiles per request is 50

firstname*string

First name of your prospect

lastname*string

Last name of your prospect

companyOrDomainstring(Can be empty if jobTitle is given)

It should contain either the company name or its domain name (or website)

jobTitlestring(Can be empty if companyOrDomain is given)

It should contain the job title of your prospect

/url-search
{
"type": "profile",
"data": [
{
"firstname": "Marc",
"lastname": "Lachabody",
"companyOrDomain": "nec technologies"
},
{
"firstname": "Katrina",
"lastname": "Larenkova",
"companyOrDomain": "apple"
}
]
}
RESPONSES