Request Parameters

Search Request Parameters

Name

Description

Operators

company_id

company_id of companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

names

Names of companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

tags

Tags associated with the companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

social_link

Social profile URLs for a company

The Linkedin url must contain any of these:
"linkedin.com/company", "linkedin.com/showcase", "linkedin.com/sharearticle/", "linkedin.com/newsletters", "linkedin.com/school",

is one of, is not one of, exists, does not exist.

domains

Domain URLs of the companies you want to filter by. 

is, is not, is one of, is not one of, exists, does not exist.

industries_names

Industries names associated with the companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

industries_codes

Industries codes associated with the companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

countries

Countries where the companies are located to filter by.

is, is not, is one of, is not one of, exists, does not exist.

states

States where the companies are located to filter by.

is, is not, is one of, is not one of, exists, does not exist.

cities

Cities where the companies are located to filter by.

is, is not, is one of, is not one of, exists, does not exist.

revenue_codes

Revenue range in USD of companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

employees_codes

Employees range of companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

technologies_product_names

Products names used in companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

technologies_vendor_names

Vendors names used in companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

technologies_product_category_names

Products category names used in companies to filter by.

is, is not, is one of, is not one of, exists, does not exist.

last_modified_date

Date from which data are filtered.

since, before

Search Request Boolean Logic

A OR operator is applied between the values of a parameter.
A AND operator is applied between parameters.

Search Request Settings

Settings

Description

Value

page_size

The number [1, 100] of results to return in a single page.

Optional.

The default is 20.

reveal_all_data

For all offices that match the criteria:

When set to true
A complete response will be returned. One corpo record credit per company returned will be charged.

When set to false
A partial response will be returned. No credit will be charged.

Mandatory

search_sensitivity

search_sensitivity allows you determine how sensible you want the search to be. possible values : 'exact', 'high medium', 'low medium', 'low'

Optional. The default is High medium.

page_number

The search results are paginated; this attribute specifies which page will be returned between [1, 100].

Optional.

The default is 1.

Examples

{
    "reveal_all_data": false,
    "parameters": {   
        "company_id": [
            {
            "operator":"exists",
            "value": null
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "names": [
            {
            "operator":"is one of",
            "value": ["DOS SANTOS CARVALHO", "DG CONCEPT"],
            "search_sensitivity":"exact"
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "tags": [
            {
            "operator":"is one of",
            "value": ["Corporation", "Has Social Link"]
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "domains": [
            {
            "operator":"is one of",
            "value": ["apple.com", "google.com"],
            "search_sensitivity":"exact"
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "industries_names": [
            {
            "operator":"is one of",
            "value": ["Home Furniture, Furnishings and Equipment Stores"]
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "industries_codes": [
            {
            "operator":"is one of",
            "value": ["57", "0291"]
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "countries": [
            {
            "operator":"is one of",
            "value": ["Canada", "United States"]
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "states": [
            {
            "operator":"is one of",
            "value": ["New York", "Berkshire"]
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "cities": [
            {
            "operator":"is one of",
            "value": ["New York City", "Wokingham"]
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "revenue_codes": [
            {
            "operator":"is one of",
            "value": ["1M - 2M", "100M - 500M"]
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "employee_codes": [
            {
            "operator":"is one of",
            "value": ["10 - 49","200 - 499"]
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "technologies_product_names": [
            {
            "operator":"is one of",
            "value": ["Adobe Typekit","Google Analytics"],
            "search_sensitivity":"exact"
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "technologies_vendor_names": [
            {
            "operator":"is one of",
            "value": ["Google","Microsoft"],
            "search_sensitivity":"exact"
            }
        ]
    }
}
{
    "reveal_all_data": true,
    "parameters": {   
        "technologies_product_category_names": [
            {
            "operator":"is one of",
            "value": ["Enterprise Content Solutions", "Infrastructure as a Service (IaaS)"]
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {   
        "last_modified_date": [
            {
            "operator": "since",
            "value": "2022-10-30"
            }
        ]
    }
}
{
    "reveal_all_data": false,
    "parameters": {
        "domains": [
            {
                "operator": "exists",
                "value": null
            }
         ],
         "countries": [
            {
                "operator": "is one of",
                "value": ["Canada","United Kingdom"]
            }
         ],
         "last_modified_date": [
            {
                "operator": "since",
                "value": "2022-01-06"
            }
         ]  
    }
}

What’s Next