Postman Tutorial
Request example:
curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/job_multi_source/search/es_dsl' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query": {
"bool": {
"must": [
{
"match": {
"title": "product manager"
}
},
{
"match": {
"location": "Los Angeles"
}
}
]
}
}
}'
Last updated
Was this helpful?