Company Data
...
Base Company API
Request Examples

Search Filters

4min
s earch endpoint url /v2/company base/search/filter overview unsure how to write a search request? this article contains several request examples you can refer to postman (curl) examples all personal/company information mentioned within this context is entirely fictional and is solely intended for illustrative purposes 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 first example 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" }' find the it company company profile on the professional network second example 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 }' find companies that have received seed funding since january 1, 2021 third example 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" }' find companies founded in 2022 or before in the united states and operating in the software development industry fourth example 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 }'