Employee Data
...
Employee API
Request Examples

Search Filters

5min
s earch endpoint url https //api coresignal com/cdapi/v2/member/search/filter 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 all employees from the united states who work in the information technology industry as cso s first example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/member/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "title" "cso", "location" "united states", "industry" "information technology" }' find employees with data processing certifications and a background in python development r ecords must updated on or after may 26, 2022 second example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/member/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "last updated gte" "2022 05 26 12 41 10", "certification name" "data processing", "experience title" "python developer" }' find people who were employed in a particular company (for instance, a company identified by key 9073671 ) until april 2023 the employment details were publicly available on the employee's profile at the time of scraping third example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/member/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "experience date to" "april 2023", "experience deleted" false, "experience company id" 9073671 }' find employees who started their employment in march 2018 and are currently working fourth examples curl x 'post' \\ 'https //api coresignal com/cdapi/v2/member/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "experience date from" "march 2018", "active experience" true }' find the founders of a particular company (for instance, a company identified by key 9073671 ) their employment history must be displayed on their profile and marked as ongoing with no end date fifth requests curl x 'post' \\ 'https //api coresignal com/cdapi/v2/member/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "experience title" "founder", "experience deleted" false, "experience company id" 9073671, "active experience" true }'