Search Filters

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

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

::::

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