Search Filters

**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.

::::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.

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"
}'

::::

::::ExpandableHeading 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
}'

::::

::::ExpandableHeading 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"
}'

::::

::::ExpandableHeading 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
}'

::::

Was this helpful?