curl --request POST \
--url https://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"jobCandidateIds": [
12345,
12346,
12347
]
}
'import requests
url = "https://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch"
payload = { "jobCandidateIds": [12345, 12346, 12347] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({jobCandidateIds: [12345, 12346, 12347]})
};
fetch('https://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch', 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://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch",
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([
'jobCandidateIds' => [
12345,
12346,
12347
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch"
payload := strings.NewReader("{\n \"jobCandidateIds\": [\n 12345,\n 12346,\n 12347\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"jobCandidateIds\": [\n 12345,\n 12346,\n 12347\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"jobCandidateIds\": [\n 12345,\n 12346,\n 12347\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"data": [
{
"id": 12345,
"jobId": 12345,
"candidateId": 12345,
"profileMatchScore": 85,
"evaluationStatus": "PENDING",
"criteriaMatches": {
"skills": 90,
"experience": 80,
"education": 75
},
"recommendToRecruitingFirm": true,
"aiSummary": "Strong candidate with relevant experience...",
"candidate_details": {
"id": 12345,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"phone": "+1234567890",
"currentJobTitle": "Software Engineer",
"currentCompany": "Tech Corp",
"city": "San Francisco",
"country": "United States",
"skills": [
"JavaScript",
"React",
"Node.js"
],
"resume": "https://storage.example.com/resumes/john-doe.pdf",
"majors": [
"Computer Science"
],
"summary": "Experienced software engineer...",
"languages": [
"English"
],
"educations": [
{
"degree": "Bachelor's",
"field": "Computer Science",
"institution": "University"
}
],
"workExperiences": [
{
"title": "Software Engineer",
"company": "Tech Corp",
"duration": "2 years"
}
],
"projectExperiences": [],
"certifications": [],
"githubUrl": "https://github.com/johndoe",
"linkedin": "https://linkedin.com/in/johndoe"
},
"customFields": {
"13": {
"label": "Preferred Communication Channel",
"value": "Email",
"parentSection": "Personal Details"
}
}
}
]
}Bulk fetch job candidates
Fetch up to 100 job candidates by their IDs in a single request. Each
returned item carries the job-specific record (AI profile match score,
criteria match breakdown, evaluation status, AI-generated summary and
recommendation) together with the full candidate_details object and
any enriched custom field values.
The profileMatchScore is calculated by evaluating the candidate’s
resume against the job’s criterionDetails: “Must Have” criteria are
weighted most heavily (missing one can drop a score to 40-60), “Nice
to Have” criteria contribute without disqualifying, and “Bonus”
criteria add points without penalizing candidates that lack them.
Validation rules:
jobCandidateIdsmust be provided and cannot be empty.jobCandidateIdsmust be an array of at most 100 IDs.- Each job candidate ID must be a valid non-empty string or number.
curl --request POST \
--url https://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"jobCandidateIds": [
12345,
12346,
12347
]
}
'import requests
url = "https://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch"
payload = { "jobCandidateIds": [12345, 12346, 12347] }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({jobCandidateIds: [12345, 12346, 12347]})
};
fetch('https://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch', 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://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch",
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([
'jobCandidateIds' => [
12345,
12346,
12347
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch"
payload := strings.NewReader("{\n \"jobCandidateIds\": [\n 12345,\n 12346,\n 12347\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"jobCandidateIds\": [\n 12345,\n 12346,\n 12347\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://partner-api.taptalent.io/v1/partner/job-candidates/bulk-fetch")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"jobCandidateIds\": [\n 12345,\n 12346,\n 12347\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"data": [
{
"id": 12345,
"jobId": 12345,
"candidateId": 12345,
"profileMatchScore": 85,
"evaluationStatus": "PENDING",
"criteriaMatches": {
"skills": 90,
"experience": 80,
"education": 75
},
"recommendToRecruitingFirm": true,
"aiSummary": "Strong candidate with relevant experience...",
"candidate_details": {
"id": 12345,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"phone": "+1234567890",
"currentJobTitle": "Software Engineer",
"currentCompany": "Tech Corp",
"city": "San Francisco",
"country": "United States",
"skills": [
"JavaScript",
"React",
"Node.js"
],
"resume": "https://storage.example.com/resumes/john-doe.pdf",
"majors": [
"Computer Science"
],
"summary": "Experienced software engineer...",
"languages": [
"English"
],
"educations": [
{
"degree": "Bachelor's",
"field": "Computer Science",
"institution": "University"
}
],
"workExperiences": [
{
"title": "Software Engineer",
"company": "Tech Corp",
"duration": "2 years"
}
],
"projectExperiences": [],
"certifications": [],
"githubUrl": "https://github.com/johndoe",
"linkedin": "https://linkedin.com/in/johndoe"
},
"customFields": {
"13": {
"label": "Preferred Communication Channel",
"value": "Email",
"parentSection": "Personal Details"
}
}
}
]
}Authorizations
Company-scoped API key. Production keys are prefixed sk_live_,
sandbox keys sk_test_, each followed by 22 base62 characters
(pattern ^sk_(live|test)_[0-9A-Za-z]{22}$). Generate keys in the
TapTalent dashboard under Account Settings → Developers → API Key
Management; a key is shown once at generation and old keys are
invalidated immediately on regeneration.
Body
Request body for bulk-fetching job candidates by ID.
Array of job candidate IDs to fetch. Maximum 100 IDs per request; must be provided and cannot be empty.
1 - 100 elementsA job candidate ID. Each ID must be a valid non-empty string or number.
Was this page helpful?
.png?fit=max&auto=format&n=lKy84_BssSCy2hcz&q=85&s=ac7c949427cc2893306f6036415f087e)