Postman Tutorial
To start using our API, you need an API Key. Get yout key from Coresignal's self-service platform.
Request example:
curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/job_base/search/es_dsl'\
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query": {
"match": {
"company_name": {
"query": "Apple",
"operator": "and"
}
}
},
"sort": [
"id"
]
}'
Last updated
Was this helpful?