ATS Job Board Scraper — Workday, Greenhouse, Lever, Ashby
Pricing
$1.50 / 1,000 job postings
Go to Apify Store
ATS Job Board Scraper — Workday, Greenhouse, Lever, Ashby
Pricing
$1.50 / 1,000 job postings
You can access the ATS Job Board Scraper — Workday, Greenhouse, Lever, Ashby programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
{ "openapi": "3.0.1", "info": { "version": "0.1", "x-build-id": "r3hevnXBa5Khd2YjB" }, "servers": [ { "url": "https://api.apify.com/v2" } ], "paths": { "/acts/splendorous_astrolabe_xs9~ats-jobs-workday/run-sync-get-dataset-items": { "post": { "operationId": "run-sync-get-dataset-items-splendorous_astrolabe_xs9-ats-jobs-workday", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } }, "/acts/splendorous_astrolabe_xs9~ats-jobs-workday/runs": { "post": { "operationId": "runs-sync-splendorous_astrolabe_xs9-ats-jobs-workday", "x-openai-isConsequential": false, "summary": "Executes an Actor and returns information about the initiated run in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/runsResponseSchema" } } } } } } }, "/acts/splendorous_astrolabe_xs9~ats-jobs-workday/run-sync": { "post": { "operationId": "run-sync-splendorous_astrolabe_xs9-ats-jobs-workday", "x-openai-isConsequential": false, "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.", "tags": [ "Run Actor" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/inputSchema" } } } }, "parameters": [ { "name": "token", "in": "query", "required": true, "schema": { "type": "string" }, "description": "Enter your Apify token here" } ], "responses": { "200": { "description": "OK" } } } } }, "components": { "schemas": { "inputSchema": { "type": "object", "required": [ "companies" ], "properties": { "companies": { "title": "Companies / board URLs", "type": "array", "description": "One entry per company. Accepts: a plain company name (e.g. <code>stripe</code> — the actor auto-discovers its board on every enabled source, including Workday tenant discovery), a full board URL (e.g. <code>https://boards.greenhouse.io/stripe</code>, <code>https://jobs.lever.co/plaid</code>, <code>https://jobs.ashbyhq.com/openai</code>, <code>https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite</code>), or an explicit <code>source:token</code> pair (e.g. <code>greenhouse:stripe</code>, <code>workday:nvidia.wd5/NVIDIAExternalCareerSite</code>).", "items": { "type": "string" } }, "sources": { "title": "ATS sources to check", "type": "array", "description": "Which ATS systems to query. When a plain company name is given, the actor probes each enabled source for a matching board.", "items": { "type": "string", "enum": [ "greenhouse", "lever", "ashby", "workday" ], "enumTitles": [ "Greenhouse", "Lever", "Ashby", "Workday" ] }, "default": [ "greenhouse", "lever", "ashby", "workday" ] }, "keywords": { "title": "Title keywords (any match)", "type": "array", "description": "Keep only postings whose title contains at least one of these keywords (case-insensitive). Leave empty for all postings.", "default": [], "items": { "type": "string" } }, "locations": { "title": "Location filters (any match)", "type": "array", "description": "Keep only postings whose location contains at least one of these strings (case-insensitive), e.g. <code>Remote</code>, <code>New York</code>, <code>London</code>. Leave empty for all locations.", "default": [], "items": { "type": "string" } }, "remoteOnly": { "title": "Remote jobs only", "type": "boolean", "description": "Keep only postings flagged remote by the ATS (or whose location mentions 'remote').", "default": false }, "mode": { "title": "Mode", "enum": [ "snapshot", "delta" ], "type": "string", "description": "<b>snapshot</b> pushes every posting currently live. <b>delta</b> compares against this actor's previous run (persisted in a named key-value store) and pushes only postings that appeared (<code>change: \"new\"</code>) or disappeared (<code>change: \"removed\"</code>) — the hiring-signal feed. The first delta run seeds the baseline and emits everything as <code>new</code>.", "default": "snapshot" }, "includeDescription": { "title": "Include full job description", "type": "boolean", "description": "Attach the job description (HTML) to each posting. Increases output size significantly.", "default": false }, "maxJobsPerCompany": { "title": "Max jobs per company/source", "minimum": 1, "type": "integer", "description": "Safety cap on postings fetched per company per source.", "default": 5000 }, "stateKey": { "title": "Delta state key", "type": "string", "description": "Advanced: name of the record inside the <code>ats-jobs-workday-state</code> key-value store used for delta comparison. Change it to keep independent watchlists (one per schedule).", "default": "default" } } }, "runsResponseSchema": { "type": "object", "properties": { "data": { "type": "object", "properties": { "id": { "type": "string" }, "actId": { "type": "string" }, "userId": { "type": "string" }, "startedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "finishedAt": { "type": "string", "format": "date-time", "example": "2025-01-08T00:00:00.000Z" }, "status": { "type": "string", "example": "READY" }, "meta": { "type": "object", "properties": { "origin": { "type": "string", "example": "API" }, "userAgent": { "type": "string" } } }, "stats": { "type": "object", "properties": { "inputBodyLen": { "type": "integer", "example": 2000 }, "rebootCount": { "type": "integer", "example": 0 }, "restartCount": { "type": "integer", "example": 0 }, "resurrectCount": { "type": "integer", "example": 0 }, "computeUnits": { "type": "integer", "example": 0 } } }, "options": { "type": "object", "properties": { "build": { "type": "string", "example": "latest" }, "timeoutSecs": { "type": "integer", "example": 300 }, "memoryMbytes": { "type": "integer", "example": 1024 }, "diskMbytes": { "type": "integer", "example": 2048 } } }, "buildId": { "type": "string" }, "defaultKeyValueStoreId": { "type": "string" }, "defaultDatasetId": { "type": "string" }, "defaultRequestQueueId": { "type": "string" }, "buildNumber": { "type": "string", "example": "1.0.0" }, "containerUrl": { "type": "string" }, "usage": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "integer", "example": 1 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } }, "usageTotalUsd": { "type": "number", "example": 0.00005 }, "usageUsd": { "type": "object", "properties": { "ACTOR_COMPUTE_UNITS": { "type": "integer", "example": 0 }, "DATASET_READS": { "type": "integer", "example": 0 }, "DATASET_WRITES": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_READS": { "type": "integer", "example": 0 }, "KEY_VALUE_STORE_WRITES": { "type": "number", "example": 0.00005 }, "KEY_VALUE_STORE_LISTS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_READS": { "type": "integer", "example": 0 }, "REQUEST_QUEUE_WRITES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_INTERNAL_GBYTES": { "type": "integer", "example": 0 }, "DATA_TRANSFER_EXTERNAL_GBYTES": { "type": "integer", "example": 0 }, "PROXY_RESIDENTIAL_TRANSFER_GBYTES": { "type": "integer", "example": 0 }, "PROXY_SERPS": { "type": "integer", "example": 0 } } } } } } } } }}OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.
OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.
By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.
You can download the OpenAPI definitions for ATS Job Board Scraper — Workday, Greenhouse, Lever, Ashby from the options below:
If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.
You can also check out our other API clients: