Postman Tutorial

Request example:

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?