Search Preview
Data type:
Query type:
URL:
Multi-source Employee
Elasticsearch DSL
https://api.coresignal.com/cdapi/v2/employee_multi_source/search/es_dsl/preview
Overview
Retrieve a limited set of fields from top-matching records in real time, and search suggestion features. Here, Multi-source Employee API search /v2/employee_multi_source/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_multi_source/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": "summary",
"default_operator": "and"
}
}
]
}
}
}'Response structure
Here is an overview of the fields that are retrieved using the Multi-source Employee API search preview endpoints.
id
Identification number
Integer
full_name
Employee's full name
String
professional_network_url
Most recent Professional network profile URL
String
headline
Profile headline
String
location_full
Employee's full location
String
location_country
Associated country
String
connections_count
Count of profile connections
Integer
followers_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
active_experience_title
Title of employee's current position
String
active_experience_department
A list of employee's departments, based on actve_position_title
String
active_experience_management_level
A list of employee's management levels, based on active_experience_title
String
company_hq_full_address
Full address of the company's headquarters. Data is from experience category
String
company_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?