Sync permissioned job posts data with Greenhouse through Apideck's unified API. One integration, instant access to the governed data your team needs.
In Apideck, this resource is called Jobs (API: jobs)
List, Get operations available through our unified API
Fields available for Greenhouse Job Posts
idtitlevisibilitystatuscodelocationrequisition_iddepartmentrecruitershiring_managersdescription_htmlurllinksconfidentialaddresses+5 moreSample response structure for job posts
{
"id": "12345",
"title": "Example Title",
"visibility": "string",
"status": "active",
"code": "CODE-001",
"location": "string",
"requisition_id": "12345",
"department": "string",
"recruiters": "string",
"hiring_managers": "string",
"description_html": "Example Description Html",
"url": "https://example.com",
"links": "https://example.com",
"confidential": "12345",
"addresses": [
{
"id": "123",
"type": "primary",
"string": "25 Spring Street, Bl
...Start syncing Greenhouse job posts 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 job posts from Greenhouse
const result = await apideck.ats.jobs.list({
serviceId: 'greenhouse'
})
for await (const page of result) {
console.log(page)
}
// Returns unified job posts 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 Greenhouse integrations in your favorite language with our official SDKs.
Build Greenhouse integrations with the official Node.js SDK.
Build Greenhouse integrations with the official TypeScript SDK.
Build Greenhouse integrations with the official PHP SDK.
Build Greenhouse integrations with the official .NET.
Build Greenhouse integrations with the official Python SDK.
Build Greenhouse integrations with the official Java SDK.
Build Greenhouse integrations with the official Go SDK.