Search Filters
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
::::ExpandableHeading Find a job posting from Example Company that was posted on or after May 26, 2022, for **full-time **work.
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"
}'::::
::::ExpandableHeading Find an active job posting for a **product manager based **in Dallas, United States.
::::
::::ExpandableHeading Find job postings from** Example Company** posted after May 1, 2023.
::::
::::ExpandableHeading Find **active **job postings in software development industry companies based in the United States.
::::
::::ExpandableHeading
Find IT industry job postings created between May 1 and 7, 2022, specifically for developer or DevOps positions using the OR operator.
::::
::::ExpandableHeading Find historical job records.
::::
Was this helpful?