# Company Career Page Jobs API | 💵$2/1K (`webdata_labs/company-career-page-jobs-api`) Actor

\[💵 $2.00 / 1K] Turn company websites and career pages into normalized open-job data. Auto-discovers Workday, Greenhouse, Lever, Ashby, SmartRecruiters, Recruitee, or Personio boards.

- **URL**: https://apify.com/webdata\_labs/company-career-page-jobs-api.md
- **Developed by:** [WebData Labs](https://apify.com/webdata_labs) (community)
- **Categories:** Jobs, Automation, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 normalized job records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Company Career Page Jobs API

Turn ordinary company websites and careers pages into clean, normalized job data.

Instead of finding an ATS board slug by hand, paste a company website, careers page, or direct job-board URL. The Actor follows career links, detects the underlying ATS, and exports every open role in one consistent schema.

### ✅ What you get / ❌ what this isn't

- ✅ Automatic discovery of supported ATS job boards from ordinary career pages.
- ✅ One schema across Workday, Greenhouse, Lever, Ashby, SmartRecruiters, Recruitee, and Personio.
- ✅ Job rows plus company-level hiring summaries.
- ✅ Optional descriptions and new-jobs-only monitoring mode.
- ❌ Not a LinkedIn, Indeed, or Google Jobs scraper.
- ❌ Generic custom career sites without a supported ATS may return a clear not-found summary.

### 🔎 Use cases

- Build a normalized job feed from a company watchlist.
- Detect which ATS a prospect uses.
- Monitor portfolio companies for new roles.
- Turn customer/company URLs into recruiting or B2B hiring signals.

### 👥 Who it is for

Recruiters, job boards, sales-intelligence teams, investors, researchers, and automation builders who start with company URLs rather than ATS-specific board identifiers.

### ⚙️ Input

```json
{
  "careerPages": [
    "https://linear.app/careers",
    "https://www.figma.com/careers"
  ],
  "maxJobsPerCompany": 200,
  "includeDescription": false,
  "onlyNewJobs": false
}
````

### 📥 How it works

1. Fetch the supplied site or career page.
2. Follow likely Careers/Jobs links and redirects.
3. Detect a supported ATS URL in the page or destination.
4. Call the ATS public job-board endpoint.
5. Normalize jobs and emit a company summary.

### 📤 Output

Job rows include `company`, `ats`, `jobId`, `title`, `department`, `team`, `location`, `isRemote`, `workplaceType`, `employmentType`, `url`, `applyUrl`, posting timestamps where exposed, `sourceInput`, and `resolvedCareerPage`.

Company summaries include detected ATS, open-job count, remote-job count, department/location rollups, newest visible posting date, and discovery provenance.

### 💵 Pricing

Pay per dataset item. Errors are emitted for diagnosis but are not intended as paid result events. Platform usage is included when published under the portfolio's pay-per-event model.

### 🔁 Monitoring

Enable `onlyNewJobs` for scheduled runs. The first run establishes state; later runs emit only previously unseen jobs while retaining a current company summary.

### ⚠️ Limits

- ATS discovery depends on the careers page exposing or redirecting to its public board.
- Some sites block datacenter traffic or hide links behind client-side applications.
- Workday list endpoints expose fewer fields than some other ATS platforms.
- A company with no current postings can be indistinguishable from an invalid public board on some systems; the summary preserves that uncertainty.

### 🧩 Supported ATS platforms

Workday, Greenhouse, Lever, Ashby, SmartRecruiters, Recruitee, and Personio.

### ❓ Quick start

Keep the prefilled Linear careers URL and click Start. The run should discover its public ATS and return normalized jobs in under five minutes.

### 🛠️ Support

For a missed careers page, include the original URL and run ID in the issue. Do not include private credentials or session cookies.

### ❓ FAQ

#### Can I submit a normal company website instead of an ATS URL?

Yes. The Actor can discover a supported careers or ATS page from a company or career-page URL when it is publicly linked.

#### Does it return closed jobs?

It returns jobs exposed by the supported public career source at run time. Removed or unpublished roles are not included.

# Actor input Schema

## `careerPages` (type: `array`):

Paste company websites, careers pages, or direct ATS board URLs. The Actor follows careers/jobs links and detects Workday, Greenhouse, Lever, Ashby, SmartRecruiters, Recruitee, and Personio.

## `onlyNewJobs` (type: `boolean`):

Return only jobs not seen in previous runs for each company.

## `maxJobsPerCompany` (type: `integer`):

Maximum number of open jobs returned for each discovered company board.

## `includeDescription` (type: `boolean`):

Include full HTML descriptions when the underlying public ATS endpoint exposes them.

## `proxyConfiguration` (type: `object`):

Optional; public ATS endpoints normally work without a proxy.

## Actor input object example

```json
{
  "careerPages": [
    "https://www.figma.com/careers"
  ],
  "onlyNewJobs": false,
  "maxJobsPerCompany": 200,
  "includeDescription": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `OUTPUT` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "careerPages": [
        "https://www.figma.com/careers"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("webdata_labs/company-career-page-jobs-api").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "careerPages": ["https://www.figma.com/careers"] }

# Run the Actor and wait for it to finish
run = client.actor("webdata_labs/company-career-page-jobs-api").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "careerPages": [
    "https://www.figma.com/careers"
  ]
}' |
apify call webdata_labs/company-career-page-jobs-api --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=webdata_labs/company-career-page-jobs-api",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Company Career Page Jobs API | 💵$2/1K",
        "description": "[💵 $2.00 / 1K] Turn company websites and career pages into normalized open-job data. Auto-discovers Workday, Greenhouse, Lever, Ashby, SmartRecruiters, Recruitee, or Personio boards.",
        "version": "0.1",
        "x-build-id": "cyeehBlXhJzVp43K4"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/webdata_labs~company-career-page-jobs-api/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-webdata_labs-company-career-page-jobs-api",
                "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/webdata_labs~company-career-page-jobs-api/runs": {
            "post": {
                "operationId": "runs-sync-webdata_labs-company-career-page-jobs-api",
                "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/webdata_labs~company-career-page-jobs-api/run-sync": {
            "post": {
                "operationId": "run-sync-webdata_labs-company-career-page-jobs-api",
                "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": [
                    "careerPages"
                ],
                "properties": {
                    "careerPages": {
                        "title": "Company websites or career pages",
                        "type": "array",
                        "description": "Paste company websites, careers pages, or direct ATS board URLs. The Actor follows careers/jobs links and detects Workday, Greenhouse, Lever, Ashby, SmartRecruiters, Recruitee, and Personio.",
                        "default": [
                            "https://www.figma.com/careers",
                            "https://linear.app/careers"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "onlyNewJobs": {
                        "title": "Only new jobs",
                        "type": "boolean",
                        "description": "Return only jobs not seen in previous runs for each company.",
                        "default": false
                    },
                    "maxJobsPerCompany": {
                        "title": "Max jobs per company",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Maximum number of open jobs returned for each discovered company board.",
                        "default": 200
                    },
                    "includeDescription": {
                        "title": "Include job descriptions",
                        "type": "boolean",
                        "description": "Include full HTML descriptions when the underlying public ATS endpoint exposes them.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Optional; public ATS endpoints normally work without a proxy.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
