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