# iCIMS Careers Portal Scraper for icims.com (`usestring/icims-jobs`) Actor

Collects job postings from any iCIMS careers portal on icims.com: title, company or brand, department, employmentType, postedAt, apply URL, and the location split out of the portal's country-state-city code. Follows the portal's own paginator, so a 1,000-posting site comes back in full.

- **URL**: https://apify.com/usestring/icims-jobs.md
- **Developed by:** [String](https://apify.com/usestring) (community)
- **Categories:** Jobs, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.75 / 1,000 results

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

## iCIMS Job Board Scraper — any icims.com careers portal

Collect job postings from any iCIMS-hosted careers portal on `icims.com`. Give this Actor an iCIMS
portal URL or tenant subdomain, and it returns the portal's postings with title, company, department,
employment type, location split into city, state and country, remote flag, posted date and apply URL.

iCIMS renders its job cards server-side into one platform-wide template, so this Actor reads that
markup directly: every tenant ships the same job-card shape from the same platform build. Postings
are collected by following the portal's own `rel="next"` paginator, up to 200 pages per board.

No iCIMS account, login, API key or cookies are used. This Actor reads the public careers portal that
a logged-out visitor sees.

### What it returns

| Field | Type | Notes |
| --- | --- | --- |
| `jobId` | string | iCIMS's own posting ID, taken from the job URL — stable, use it to de-duplicate |
| `title` | string | |
| `company` | string | From the tenant's own company field — `Company`, `Subsidiary`, `Brand`, `Business Unit` and similar. `null` when the portal publishes none |
| `tenant` | string | The iCIMS portal subdomain, e.g. `careers-emcorgroup` |
| `location` | string | Verbatim, in iCIMS's coded form `country-state-city`, e.g. `"US-PA-Wilkes-Barre"`. A posting open in several places lists them all, pipe-separated |
| `city`, `state`, `country` | string | Split from that coded form, describing the first location listed. `null` when a tenant writes a location outside the coded form |
| `isRemote` | boolean | From the tenant's workplace field where it publishes one, otherwise from the location. `null` when neither is present |
| `department` | string | From the tenant's category field — `Category`, `Department`, `Function`, `Job Family` and similar. `null` when the portal publishes none |
| `employmentType` | string | From the tenant's type field — `Position Type`, `Employment Type`, `Full/Part Time` and similar. `null` when the portal publishes none |
| `postedAt` | string | `YYYY-MM-DD`, or `YYYY-MM-DDTHH:MM:SS` when the portal publishes a time. Kept as a local wall-clock stamp — iCIMS renders the posting time in the portal's own timezone and never states which |
| `jobUrl` | string | Direct link to the posting |
| `boardUrl` | string | The portal a person would open, `https://<tenant>.icims.com` |
| `sourceUrl`, `collectedAt` | string | Provenance for every row |

### Input

```json
{ "boards": ["https://careers-emcorgroup.icims.com"], "maxItems": 1000 }
```

| Field | Description |
| --- | --- |
| `boards` | iCIMS portal URLs or tenant subdomains on `icims.com`. Required, 1–100. |
| `maxItems` | Cap on dataset items. Default 1000, maximum 50,000. Free plans stop at 250 requests and 250 results — see below. |
| `concurrency` | Portals fetched in parallel. Default 3, maximum 5. |

`maxItems` is a budget shared across every portal in the input, and each portal stops paginating as
soon as the run can no longer keep the rows — so a hundred portals under a thousand-row cap fetch a
thousand rows rather than a hundred portals in full.

### Use cases

- Tracking enterprise and high-volume hiring across a watchlist of iCIMS careers portals
- Competitor headcount signals by location, department and employment type
- Filling an ATS, job board or talent CRM with live postings straight from the employer
- Recruiting lead lists filtered on `city`, `state`, `country` or `isRemote`
- Monitoring a portal over time by re-running on a schedule and diffing on `jobId`

### Reliability

iCIMS serves its job cards from one platform-wide template, so the card shape is the same across
every tenant. What varies is which fields a tenant turns on and what it calls them — `Job Locations`
against `Location`, `Category` against `Function` against `Department`. Every value is labelled in
the markup, so this Actor reads the labels and maps them to contract fields rather than relying on
positions. A field a tenant does not publish comes back `null` rather than holding another column's
value.

iCIMS answers with the branded portal wrapper — no cards and no pagination — unless a request
presents iframe-context fetch metadata. That is not a URL parameter: without those headers a portal
that lists 1,450 postings returns a 98KB shell with zero job cards. Those headers are sent on every
page request.

The paginator is markup a tenant can rewrite, so a `rel="next"` link pointing off the portal's own
host is not followed.

A portal that cannot be read is recorded in the run's `SUMMARY` under `failures` rather than silently
returning fewer rows, and a run where every portal failed exits with an error.

### Frequently asked questions

**How do I find a company's iCIMS portal URL?** An iCIMS careers portal lives at
`https://<tenant>.icims.com`, where the tenant is a subdomain the company chose — for example
`careers-emcorgroup`. Open the company's "careers" or "search jobs" link and copy the host from the
address bar. You can pass the full URL or just the subdomain.

**Do I need an iCIMS account, API key or login?** No. This Actor reads the public job search that any
logged-out visitor can see. No account, no cookies, no session.

**How many job postings does one request return?** It depends on the portal — iCIMS lets each tenant
set its own page size. This Actor follows the portal's own `rel="next"` link until the rows run out,
up to 200 pages per board.

**Does it work for any company on iCIMS?** Yes — any careers portal on `icims.com`, addressed by its
tenant subdomain. Nothing is hardcoded per company.

**Why are `company`, `department` and `employmentType` sometimes empty?** iCIMS lets each tenant
choose which fields appear on a job card and what to call them. Those three are only filled when the
portal publishes a matching labelled field on the card.

**Is `postedAt` in UTC?** No, and deliberately not stamped as if it were. iCIMS renders the posting
time in the portal's own timezone and never states which one, so the value is kept as a local
wall-clock stamp rather than being given an invented offset.

### Limitations

Job-card fields only: no job description body, no compensation, no application counts and no
recruiter contacts. The full JobPosting structured data lives on each posting's detail page, which
this Actor does not open. A posting open in several locations has all of them in `location`, but
`city`, `state` and `country` describe only the first. Only `icims.com` portals are accepted — a URL
on any other host is rejected rather than fetched.

### Free plan limit

Runs started from an Apify **free plan** stop at **250 requests and 250 results**, and the run
reports that it reached the limit. Any paid plan runs the full input and `maxItems` you set.

The limit exists because this Actor fetches through our own infrastructure, which Apify does not
cover for free-plan runs. It binds on requests as well as results so that a large input list cannot
spend those fetches for rows the run will not return.

# Actor input Schema

## `boards` (type: `array`):

iCIMS portal URLs (…icims.com).

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

Global cap on dataset items. Runs started from an Apify free plan stop at 250 requests and 250 results; any paid plan runs the full amount.

## `concurrency` (type: `integer`):

Targets fetched in parallel.

## Actor input object example

```json
{
  "boards": [
    "https://careers-emcorgroup.icims.com"
  ],
  "maxItems": 1000,
  "concurrency": 3
}
```

# Actor output Schema

## `results` (type: `string`):

Collect job postings from any iCIMS-hosted careers portal on icims.com.

## `summary` (type: `string`):

Item count, failure count and every target that failed, with its error.

# 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 = {
    "boards": [
        "https://careers-emcorgroup.icims.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("usestring/icims-jobs").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 = { "boards": ["https://careers-emcorgroup.icims.com"] }

# Run the Actor and wait for it to finish
run = client.actor("usestring/icims-jobs").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "boards": [
    "https://careers-emcorgroup.icims.com"
  ]
}' |
apify call usestring/icims-jobs --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,usestring/icims-jobs"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/3gFbtOuOx7xNal37r/builds/2AaNduhWwMm2EKMcA/openapi.json
