Sync permissioned candidates data with Bullhorn ATS through Apideck's unified API. One integration, instant access to the governed data your team needs.
In Apideck, this resource is called Applicants (API: applicants)
Full CRUD support available through our unified API
Fields available for Bullhorn ATS Candidates
idnamesalutationfirst_namelast_namemiddle_nameinitialsbirthdaygendersocial_security_numbertypecover_letterheadlinetitleemails+20 moreSample response structure for candidates
{
"id": "12345",
"name": "Example Name",
"salutation": "string",
"first_name": "Example First Name",
"last_name": "Example Last Name",
"middle_name": "12345",
"initials": "string",
"birthday": "string",
"gender": "string",
"social_security_number": 10,
"type": "standard",
"cover_letter": "string",
"headline": "string",
"title": "Example Title",
"emails": [
{
"id": "12345",
"email": "contact@example.com",
"type": "primary"
}
],
"custom_f
...Start syncing Bullhorn ATS candidates in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List candidates from Bullhorn ATS
const result = await apideck.ats.applicants.list({
serviceId: 'bullhorn-ats'
})
for await (const page of result) {
console.log(page)
}
// Returns unified candidates dataWe build and maintain connectors, so you don't have to. View our full list of ATS connectors.
Missing a connector? We're able to add new connectors.
Build Bullhorn ATS integrations in your favorite language with our official SDKs.
Build Bullhorn ATS integrations with the official Node.js SDK.
Build Bullhorn ATS integrations with the official TypeScript SDK.
Build Bullhorn ATS integrations with the official PHP SDK.
Build Bullhorn ATS integrations with the official .NET.
Build Bullhorn ATS integrations with the official Python SDK.
Build Bullhorn ATS integrations with the official Java SDK.
Build Bullhorn ATS integrations with the official Go SDK.