Skip to main content
Version: 1.9.0

Find company URLs

caution

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

Search for company page one at a time

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

POSThttps://app.icypeas.com/api/url-search/company
BODY PARAMS
companyOrDomain*string

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

/url-search/company
{
"companyOrDomain": "nec technologies"
}
RESPONSES

Search for company pages in bulk

To scrape multiple company 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 'company')

The type of data

data*array

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

companyOrDomain*string

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

/url-search
{
"type": "company",
"data": [
{
"companyOrDomain": "nec technologies"
},
{
"companyOrDomain": "icypessaezeaze"
}
]
}
RESPONSES