Request Parameters

Autocomplete Request Parameters

NameDescription
input_textInput text to search by to return the suggestions.

Autocomplete Query Settings

SettingsDescriptionValue
entityIndicates the entity where the autocomplete needs to search.

Possible values:
- company
- office
- profile
Mandatory
fieldIndicates the field where the autocomplete needs to search.

Possible values per entity:

company
- countries
- industries_names (on USSIC87 industry standard)
- industries_codes (on USSIC87 industry standard)
- technologies_product_names
- technologies_vendor_names
- technologies_product_category_names

office
- countries
- industries_names (on USSIC87 industry standard)
- industries_codes (on USSIC87 industry standard)

profile
- countries
Mandatory
display_countIndicates if the number of occurrences of the entity must be returned.Optional
page_sizeThe number [1, 100] of results to return in a single page.Optional.

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

The default is 1.

Examples

{
    "entity": "company",
    "field": "countries",
    "display_count": true,
    "page_size": 10,
    "page_number": 1,
    "parameters": {
        "input_text": "ba"
    }
}

What’s Next