# Jobs.chronicle.com Scraper (`lexis-solutions/jobs-chronicle-scraper`) Actor

Jobs.chronicle.com job scraper for higher education jobs. Extract academic job listings, salary, location, and role details from Chronicle of Higher Education for HR analytics, job boards, and research automation.

- **URL**: https://apify.com/lexis-solutions/jobs-chronicle-scraper.md
- **Developed by:** [Lexis Solutions](https://apify.com/lexis-solutions) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 4 total users, 2 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.90 / 1,000 jobs

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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## 🎓 Jobs.chronicle.com Scraper

![Jobs.chronicle.com Scraper](https://i.ibb.co/zhbXLCJq/jobs-chronicle.png)

### ❓ What is this scraper?

This scraper extracts structured job listing data from **jobs.chronicle.com** — academe's most trusted resource for higher education career opportunities.

Since its founding in 1966, The Chronicle of Higher Education has served millions of educators, administrators, researchers, and policymakers. This scraper taps into their jobs board to collect clean and consistent job data from:

- Individual job detail pages
- Category listing pages (e.g. Administrative, Faculty, Executive)
- Paginated search & filter results (by keyword, category, location, etc.)

The data is standardized into a normalized format, making it easy to use for analysis, integrations, or storage.

***

### ⚡ Why this scraper?

The Chronicle Jobs board is the go-to destination for higher education professionals. This scraper allows you to:

- Extract job listings at scale across all academic disciplines
- Track hiring trends across institutions and regions
- Monitor salary ranges and employment types
- Build datasets for HR analytics, research, or job aggregation platforms
- Research specific roles, institutions, and locations

***

### 📥 Input

```json
{
  "maxItems": 5,
  "startUrls": [
    {
      "url": "https://jobs.chronicle.com/jobs/academic-affairs/"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

***

### 📤 Output

Each job is returned as a structured JSON object:

```json
{
  "url": "https://jobs.chronicle.com/job/37976145/assistant-professor-of-music-education-elementary-general-music-fine-and-performing-arts/?LinkSource=PromotedJob",
  "jobId": "37976145",
  "slug": "assistant-professor-of-music-education-elementary-general-music-fine-and-performing-arts",
  "title": "Assistant Professor of Music Education (Elementary-General Music), Fine and Performing Arts",
  "employer": "Northwest Missouri State University",
  "location": "Maryville, Missouri (US)",
  "salary": "Salary is competitive, market-based dependent upon qualifications and experience.",
  "datePosted": "Apr 15, 2026",
  "positionTypes": [
    "Faculty Positions",
    "Performing Arts"
  ],
  "employmentType": "Full Time",
  "applyUrl": "https://jobs.chronicle.com/apply/37976145/assistant-professor-of-music-education-elementary-general-music-fine-and-performing-arts?LinkSource=PromotedJob",
  "description": "Full job description text...",
  "relatedJobs": [
    {
      "jobId": "37900313",
      "title": "Assistant Professor of Music Education",
      "location": "St. George, Utah, United States",
      "url": "https://jobs.chronicle.com/job/37900313/assistant-professor-of-music-education?LinkSource=SimilarJobPlatform"
    }
  ]
}
```

***

### Need to scrape other sites?

Check out our other scrapers on Apify:

- [Bundesagentur für Arbeit (Arbeitsagentur) Scraper](https://apify.com/lexis-solutions/bundesagentur-fur-arbeit-arbeitsagentur-scraper)
- [Jobs.ch Scraper](https://apify.com/lexis-solutions/jobs-ch-scraper)
- [vdab.be Scraper](https://apify.com/lexis-solutions/vdab-be-scraper)

***

👀 p.s.

Got feedback or need an extension?

Lexis Solutions is a [certified Apify Partner](https://apify.com/partners/find). We can help you with custom solutions or data extraction projects.

Contact us over [Email](mailto:scraping@lexis.solutions) or [LinkedIn](https://www.linkedin.com/company/lexis-solutions)

### Support Our Work 💝

If you're happy with our work and scrapers, you're welcome to leave us a company review [here](https://apify.com/partners/find/lexis-solutions/review) and leave a review for the scrapers you're subscribed to. It will take you less than a minute but it will mean a lot to us!

### Image Credit

Image Credit: https://jobs.chronicle.com/

# Actor input Schema

## `startUrls` (type: `array`):

URLs to scrape

## `maxItems` (type: `integer`):

The maximum number of items to fetch

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

Your proxy configuration from Apify

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://jobs.chronicle.com/jobs/academic-affairs/"
    }
  ],
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (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 = {
    "startUrls": [
        {
            "url": "https://jobs.chronicle.com/jobs/academic-affairs/"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("lexis-solutions/jobs-chronicle-scraper").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 = { "startUrls": [{ "url": "https://jobs.chronicle.com/jobs/academic-affairs/" }] }

# Run the Actor and wait for it to finish
run = client.actor("lexis-solutions/jobs-chronicle-scraper").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 '{
  "startUrls": [
    {
      "url": "https://jobs.chronicle.com/jobs/academic-affairs/"
    }
  ]
}' |
apify call lexis-solutions/jobs-chronicle-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=lexis-solutions/jobs-chronicle-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/RTeoD1DWp9anggrEf/builds/dEPPogtkzceDfJK0X/openapi.json
