Postman Tutorial
To start using our API, you need an API Key. You can get the token from Coresignal's self-service platform.
Request example:
curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/company_multi_source/search/es_dsl' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"query": {
"bool": {
"should": [
{
"query_string": {
"query": "it",
"default_field": "company_name",
"default_operator": "and"
}
}
]
}
}
}'
Last updated
Was this helpful?