Elasticsearch DSL
Data type:
Query type:
URL:
Base Jobs
Elasticsearch DSL
https://api.coresignal.com/cdapi/v2/job_base/search/es_dsl
Overview
Use the /v2/job_base/search/es_dsl
endpoint for more sophisticated queries.
Additionally, the endpoint allows you to operate filters that mimic our job posting data, enabling you to write more sophisticated queries than using the /v2/job_base/search/filter
endpoint.
Elasticsearch schema
Sorting options
Find several examples of the available sorting options. All information about the sorting is in the general Elasticsearch DSL topic.
{
"query": {
"match": {
"company_name": {
"query": "Apple",
"operator": "and"
}
}
},
"sort": [
"id"
]
}
Last updated
Was this helpful?