# Which ATS does Pinterest use? (pinterest.com)

**Use case:** 

Point the finder at pinterest.com and it returns the applicant tracking system behind Pinterest's careers page, the board slug, the API endpoint that serves the jobs and how many roles sit on it. When this example was written the answer was Greenhouse: the board sits at job-boards.greenhouse.io/pinterest and carried 204 open roles that day.

## Input

```json
{
  "domains": [
    "pinterest.com"
  ],
  "tryDomainNameFirst": true,
  "scanCareerPages": true,
  "maxPagesPerSite": 4,
  "respectRobots": true
}
```

## Output

```json
{
  "rowType": {
    "label": "rowType",
    "format": "string"
  },
  "ok": {
    "label": "ok",
    "format": "boolean"
  },
  "reason": {
    "label": "reason",
    "format": "string"
  },
  "domain": {
    "label": "domain",
    "format": "string"
  },
  "ats": {
    "label": "ats",
    "format": "string"
  },
  "boardSlug": {
    "label": "boardSlug",
    "format": "string"
  },
  "boardName": {
    "label": "Board name",
    "format": "string"
  },
  "boardUrl": {
    "label": "boardUrl",
    "format": "string"
  },
  "openJobs": {
    "label": "openJobs",
    "format": "number"
  },
  "verified": {
    "label": "verified",
    "format": "boolean"
  },
  "foundVia": {
    "label": "foundVia",
    "format": "string"
  },
  "confidence": {
    "label": "confidence",
    "format": "string"
  },
  "evidenceUrl": {
    "label": "evidenceUrl",
    "format": "string"
  },
  "checkedAt": {
    "label": "checkedAt",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [ATS Detection - Applicant Tracking System & Job Board URL](https://apify.com/neverempty/ats-board-finder.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/ats-board-finder.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/ats-board-finder.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
