Company Data
...
Base Company API
Request Examples
Elasticsearch
6min
elastic search endpoint url /v2/company base/search/es dsl overview unsure how to write a search request? this article contains several request examples you can refer to curl examples all personal/company information mentioned within this context is entirely fictional and is solely intended for illustrative purposes find it c ompany profile first example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/company base/search/es dsl' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "query" { "bool" { "should" \[ { "term" { "website" "http //it company com" } }, { "term" { "website" "https //it company com" } }, { "wildcard" { "website" { "value" " it company com" } } } ], "must" \[ { "query string" { "query" "it company", "default field" "name", "default operator" "and" } } ], "minimum should match" 1 } } }' find companies founded in 2023 second example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/company base/search/es dsl' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "query" { "bool" { "must" \[ { "query string" { "query" "2023", "default field" "founded", "default operator" "and" } } ] } } }' find companies that have received seed funding and ensure that the date to field has a non null value note use one of the following funding round titles as input possible input values seed pre seed series a grant non equity assistance private equity series unknown post ipo equity convertible role series e series b equity crowdfunding secondary market series c undisclosed debt financing angel corporate round series d post ipo debt series g initial coin offering post ipo secondary product crowdfunding series f series h series i series j serie b third example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/company base/search/es dsl' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "query" { "bool" { "must" \[ { "nested" { "path" "company funding rounds collection", "query" { "bool" { "must" \[ { "query string" { "query" "seed", "default field" "company funding rounds collection last round type", "default operator" "and" } }, { "range" { "company funding rounds collection last round date" { "gte" "1001" } } } ] } } } } ] } } }' find companies that conducted funding rounds between 2018 and 2023 , regardless of the amount of funds raised fourth example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/company base/search/es dsl' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "query" { "bool" { "must" \[ { "nested" { "path" "company funding rounds collection", "query" { "bool" { "must" \[ { "range" { "company funding rounds collection last round date" { "gt" "2018 01 01", "lt" "2023 01 01" } } } ] } } } }, { "nested" { "path" "company funding rounds collection", "query" { "bool" { "must" \[ { "query string" { "query" " ", "default field" "company funding rounds collection last round money raised", "default operator" "and" } } ] } } } } ] } } }' find companies with it in their company name or website fifth example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/company base/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" "name", "default operator" "and" } }, { "wildcard" { "website" { "value" " it com" } } } ] } } }' find companies established in 2023 that are operating in the united states , specifically within the software development industry sixth example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/company base/search/es dsl' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "query" { "bool" { "must" \[ { "query string" { "query" "2023", "default field" "founded", "default operator" "and" } }, { "query string" { "query" "united states", "default field" "headquarters country parsed", "default operator" "and" } }, { "query string" { "query" "software development", "default field" "industry", "default operator" "and" } } ] } } }' find companies that have the keywords 3d printing service or lead generation in the description seventh example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/company base/search/es dsl' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "query" { "bool" { "must" \[ { "query string" { "query" "(3d printing) or (3d printing service) or (lead generation)", "default field" "description", "default operator" "and" } } ] } } }'