Job Posting Data
...
Jobs Data API
Request Examples

Search Filters

5min
s earch endpoint url https //api coresignal com/cdapi/v2/job base/search/filter overview unsure how to write a search request? this article contains several request examples you can refer to this page only covers examples for endpoints that use coresignal's custom filters curl requests all personal/company information mentioned within this context is entirely fictional and is solely intended for illustrative purposes find a job posting from example company that was posted on or after may 26, 2022 , for full time work first example curl x 'post' \\ 'https //api coresignal com/cdapi/v2/job base/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "last updated gte" "2022 05 26 00 00 01", "employment type" "full time", "company domain" "example company com" }' find an active job posting for a product manager based in dallas, united states second example curl x 'post' \\ 'https //api coresignal com/cdapiv2/job base/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "keyword description" "product management", "location" "dallas", "application active" true, "country" "united states" }' find job postings from example company posted after may 1, 2023 third example curl x 'post' \\ 'https //api coresignal com/cdapiv2/job base/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "created at gte" "2023 05 01 00 00 01", "company professional network url" "https //www professional network com/company/example company" }' f ind active job postings in software development industry companies based in the united states fourth example curl x 'post' \\ 'https //api coresignal com/cdapiv2/job base/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "application active" true, "country" "united states", "industry" "software development" }' find it industry job postings created between may 1 and 7, 2022, specifically for developer or devops positions using the or operator fifth example curl x 'post' \\ 'https //api coresignal com/cdapiv2/job base/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "created at gte" "2023 05 01 00 00 01", "title" "developer or devops", "industry" "it" }' find historical job records sixth example curl x 'post' \\ 'https //api coresignal com/cdapiv2/job base/search/filter' \\ h 'accept application/json' \\ h 'apikey {api key}' \\ h 'content type application/json' \\ d '{ "application active" false, "deleted" true }'