Search Preview
Data type:
Query type:
URL:
Clean Employee
Elasticsearch DSL
https://api.coresignal.com/cdapi/v2/employee_clean/search/es_dsl/preview
Overview
Retrieve a limited set of fields from top-matching records in real time, and search suggestion features. Here, Clean Employee API search /v2/employee_clean/search/es_dsl/preview endpoint's usage is reviewed.
Request queries
See the request example of preview endpoint. Search Preview endpoints accept the same query structure as their corresponding Search endpoints.
curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/employee_clean/search/es_dsl/preview' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query": {
"bool": {
"should": [
{
"query_string": {
"query": "Python",
"default_field": "description",
"default_operator": "and"
}
}
]
}
}
}'Response structure
Here is an overview of the fields that are retrieved using the Clean Employee API search preview endpoints.
id
Identification number
Integer
full_name
Employee's full name
String
websites_professional_network
Professional network profile URL
String
headline
Profile headline
String
location_full
Employee's full location
String
location_raw_address
Associated location
String
location_country
Associated country
String
connections_count
Count of profile connections
Integer
follower_count
Count of profile followers
Integer
company_name
Company name. Data is from experience category
String
company_professional_network_url
Company's Professional network URL. Data is from experience category
String
company_website
Company's website. Data is from experience category
String
company_industry
Company's industry. Data is from experience category
String
job_title
Current job position title
String
department
Associated department
String
management_level
Management level
String
company_location_hq_full_address
Full address of the company's headquarters. Data is from experience category
String
company_location_hq_country
The country where the company's headquarters are located. Data is from experience category
String
_score
Elasticsearch score
Float
Refer to the data example here:
Pagination
Example of the request using pagination query parameter page.
Last updated
Was this helpful?