Bulk Collect: Base Company API
Overview
Bulk collect endpoints
Request type
Endpoint
Limiting the returned record count
curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/data_requests/company_base/filter' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"webhook_url": {optional_webhook_url}",
"limit": 5,
"filters": {
"industry": "Information technology",
"created_at_gte": "2018-01-01 00:00:01",
"last_updated_gte": "2022-05-26 00:00:01"
}
}'curl -X 'POST' \
'https: //api.coresignal.com/cdapi/v2/data_requests/company_base/es_dsl' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"webhook_url": "{optional_webhook_url}",
"limit": 5,
"es_dsl_query": {
"query": {
"bool": {
"must": [
{
"query_string": {
"query": "(3D printing) OR (3D printing service) OR (Lead generation)",
"default_field": "description",
"default_operator": "and"
}
}
]
}
}
}
}'Credits
Rate limits
Webhooks
Last updated
Was this helpful?