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.

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

::::

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

::::

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

::::

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

::::

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

::::

Was this helpful?