Search Filters
Overview
Unsure how to write a search request? This article contains several request examples you can refer to.
Postman (cURL) examples
::::ExpandableHeading Find company profiles created on or after January 2016 and updated on or after May 25, 2022, specifically focusing on companies in the information technology industry.
curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/company_base/search/filter' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"industry": "Information technology",
"created_at_gte": "2018-01-01 00:00:01",
"last_updated_gte": "2022-05-26 00:00:01"
}'
::::
::::ExpandableHeading Find the **IT Company **company profile on the Professional Network.
curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/company_base/search/filter' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"name": "IT Company",
"country": "United States",
"employees_count_gte": 10001
}'
::::
::::ExpandableHeading Find companies that have received seed funding since January 1, 2021.
curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/company_base/search/filter' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"funding_last_round_type": "Seed",
"funding_last_round_date_gte": "2021-01-01"
}'
::::
::::ExpandableHeading Find companies founded in 2022 or before in the United States and operating in the software development industry.
curl -X 'POST' \
'https://api.coresignal.com/cdapi/v2/company_base/search/filter' \
-H 'accept: application/json' \
-H 'apikey: {API Key}' \
-H 'Content-Type: application/json' \
-d '{
"industry": "Software Development",
"country": "United States",
"founded_year_lte": 2022
}'
::::
Was this helpful?