Jobs API
curl --request POST \
--url https://api.cufinder.io/v3/jobs/search \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"name": "<string>",
"country": "<string>"
}
'import requests
url = "https://api.cufinder.io/v3/jobs/search"
payload = {
"name": "<string>",
"country": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>', country: '<string>'})
};
fetch('https://api.cufinder.io/v3/jobs/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cufinder.io/v3/jobs/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'country' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cufinder.io/v3/jobs/search"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"country\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cufinder.io/v3/jobs/search")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"country\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cufinder.io/v3/jobs/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"country\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyJobs API
Jobs API
The Jobs API returns live job postings that match your filters, each enriched with the hiring company’s full firmographics. Search by job title, location, industry, company size, funding, revenue, and more across CUFinder’s data, and get back structured job and company records you can act on. Built for developers building sourcing tools, talent intelligence platforms, and hiring-signal workflows.
POST
/
v3
/
jobs
/
search
Jobs API
curl --request POST \
--url https://api.cufinder.io/v3/jobs/search \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"name": "<string>",
"country": "<string>"
}
'import requests
url = "https://api.cufinder.io/v3/jobs/search"
payload = {
"name": "<string>",
"country": "<string>"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({name: '<string>', country: '<string>'})
};
fetch('https://api.cufinder.io/v3/jobs/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.cufinder.io/v3/jobs/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'country' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.cufinder.io/v3/jobs/search"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"country\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.cufinder.io/v3/jobs/search")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"country\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cufinder.io/v3/jobs/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"country\": \"<string>\"\n}"
response = http.request(request)
puts response.read_bodyCommon Use Cases
Open job postings are one of the clearest signals that a company is growing and spending.- Recruiting and Sourcing: Tracking live openings for a role to find companies that are hiring.
- Hiring Signals: Spotting companies in hiring mode as a buying signal for sales.
- Talent Market Research: Mapping which companies are posting for a role across a region or industry.
- Competitive Intelligence: Watching how peers and competitors staff up over time.
- List Building: Generating targeted lists of hiring companies from combined filters.
Attributes
string
required
Job title, matched as a substring, for example
data scientist.string
required
Company country. See the full list of accepted countries.
string
Company state. See the full list of accepted states.
string
Company city. See the full list of accepted cities.
string
Company industry. See the full list of accepted industries.
string
Company size band. Allowed values:
1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10001+.integer
Minimum follower count.
integer
Maximum follower count.
integer
Company founded after this year.
integer
Company founded before this year.
integer
Minimum total funding, in USD.
integer
Maximum total funding, in USD.
integer
Minimum annual revenue, in USD.
integer
Maximum annual revenue, in USD.
array[string]
Products and services keywords, for example
["b2b"].boolean
Whether the company is a school.
integer
Page number for paginated results. Each page returns up to 10 records.
Response
{
"success": true,
"data": {
"jobs": [
{
"job_id": "4444530118",
"title": "Nurse Scientist",
"url": "https://www.linkedin.com/jobs/view/nurse-scientist-at-american-nurses-association-4444530118",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-08-20T20:09:57+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
},
{
"job_id": "4444530116",
"title": "Senior Director, Research and Quality",
"url": "https://www.linkedin.com/jobs/view/senior-director-research-and-quality-at-american-nurses-association-4444530116",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-08-20T20:09:57+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
},
{
"job_id": "4449785935",
"title": "Systems Engineer",
"url": "https://www.linkedin.com/jobs/view/systems-engineer-at-american-nurses-association-4449785935",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-08-08T20:09:57+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
},
{
"job_id": "4446448091",
"title": "Strat. Comms. & Marketing Spec., A.I. Progs.",
"url": "https://www.linkedin.com/jobs/view/strat-comms-marketing-spec-a-i-progs-at-american-nurses-association-4446448091",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-08-08T20:09:57+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
},
{
"job_id": "4442086867",
"title": "Program Manager, AI, Nursing & Digital Health",
"url": "https://www.linkedin.com/jobs/view/program-manager-ai-nursing-digital-health-at-american-nurses-association-4442086867",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-08-01T20:09:57+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
},
{
"job_id": "4444614596",
"title": "Program Management Support Staff Specialist",
"url": "https://www.linkedin.com/jobs/view/program-management-support-staff-specialist-at-american-nurses-association-4444614596",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-08-01T20:09:57+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
},
{
"job_id": "4440631678",
"title": "Content Manager- American Nurses Association",
"url": "https://www.linkedin.com/jobs/view/content-manager-american-nurses-association-at-american-nurses-association-4440631678",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-08-01T20:09:57+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
},
{
"job_id": "4440635581",
"title": "Content Manager- American Nurses Credentialing Center",
"url": "https://www.linkedin.com/jobs/view/content-manager-american-nurses-credentialing-center-at-american-nurses-association-4440635581",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-07-25T20:09:57+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
},
{
"job_id": "4440293374",
"title": "Dir., Technical Operations & Infrastructure",
"url": "https://www.linkedin.com/jobs/view/dir-technical-operations-infrastructure-at-american-nurses-association-4440293374",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-07-23T20:09:57+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
},
{
"job_id": "4440243649",
"title": "Digital Marketing Specialist",
"url": "https://www.linkedin.com/jobs/view/digital-marketing-specialist-at-american-nurses-association-4440243649",
"location": {
"country": null,
"state": null,
"city": null,
"address": "Silver Spring, MD",
"postal_code": null
},
"posted_at": "2026-07-22T13:02:17+00:00",
"company": {
"name": "american nurses association",
"domain": null,
"website_url": "http://www.nursingworld.org",
"industry": "non-profit organizations",
"type": null,
"employee_range": "201-500",
"followers_count": 645661,
"linkedin_id": null,
"logo_url": null,
"location": {
"country": "united states",
"state": "maryland",
"city": "silver spring",
"address": null,
"postal_code": null
},
"social": {
"linkedin_url": "linkedin.com/company/american-nurses-association",
"facebook_url": null,
"twitter_url": null
}
}
}
]
},
"meta": {
"confidence": 94,
"query": {
"name": "nurse",
"country": "united states",
"page": 1
},
"credits": {
"charged": 2,
"remaining": 9862
},
"pagination": {
"page": 1,
"has_more": true
}
}
}
Related APIs
Company Search
Search companies with multiple filters.
Company Career Page Finder
Locate a company’s careers page.
Company Employee Finder
Find employees working at a company.
Person Search
Search 1B+ profiles with combined filters.

