# MyNavi Tenshoku Job Scraper (`unfenced-group/mynavi-scraper`) Actor

Scrape job listings from MyNavi Tenshoku (tenshoku.mynavi.jp), Japan's largest mid-career job board. No proxy needed.

- **URL**: https://apify.com/unfenced-group/mynavi-scraper.md
- **Developed by:** [Unfenced Group](https://apify.com/unfenced-group) (community)
- **Categories:** Jobs
- **Stats:** 2 total users, 1 monthly users, 84.2% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.99 / 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.

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

## MyNavi Tenshoku Scraper

![MyNavi Tenshoku Job Scraper](https://api.apify.com/v2/key-value-stores/lJlifu6C8YQfZMPKE/records/mynavi-scraper)

Scraper for [tenshoku.mynavi.jp](https://tenshoku.mynavi.jp) — Japan's largest mid-career job board with 50,000+ listings.

### Technique

**JSON-in-HTML** (v0.2.0)

| Page type | Data source |
|---|---|
| List pages | SSR HTML parsed with Cheerio — no unauthenticated JSON API exists |
| Detail pages | `schema.org/JobPosting` JSON-LD extracted directly as structured JSON |

A mobile iPhone User-Agent bypasses the desktop WAF (HTTP 403), allowing zero-proxy scraping.

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `keyword` | string | `""` | Search keyword in Japanese or English (e.g. `エンジニア`, `IT`, `営業`). Leave empty for all listings. |
| `startUrls` | array | `[]` | Custom MyNavi list page URLs. Overrides `keyword` and `prefectureCode`. |
| `maxResults` | integer | `5` | Max listings to return. Set `0` for unlimited. |
| `fetchDetails` | boolean | `false` | Fetch each job's detail page for full JSON-LD data: structured salary (JPY integers), city-level locations, full description, experience requirements, work hours, benefits. |
| `prefectureCode` | integer | `0` | Filter by Japanese prefecture code (0 = all). See table below. |
| `remoteOnly` | boolean | `false` | Only return listings tagged as remote/telework/WFH. |
| `employmentTypeFilter` | string | `""` | Filter by type: `正社員`, `契約社員`, `パート・アルバイト`, `業務委託`. |
| `requestDelayMs` | integer | `1000` | Min delay between requests (ms). Min 200. |

#### Prefecture codes (抜粋)

| Code | Prefecture |
|---|---|
| 1 | 北海道 (Hokkaido) |
| 13 | 東京都 (Tokyo) |
| 14 | 神奈川県 (Kanagawa) |
| 27 | 大阪府 (Osaka) |
| 28 | 兵庫県 (Hyogo) |
| 40 | 福岡県 (Fukuoka) |
| 47 | 沖縄県 (Okinawa) |

Full list: standard JIS X 0401 prefecture codes 1–47.

### Output fields

#### List-page fields (always populated)

| Field | Type | Description |
|---|---|---|
| `url` | string | Canonical job detail page URL |
| `jobId` | string | MyNavi internal job identifier |
| `title` | string | Job title / position name |
| `companyName` | string | Hiring company name |
| `overview` | string | One-line job overview |
| `employmentType` | string | Employment type in Japanese (e.g. `正社員`) |
| `conditions` | string[] | Condition/feature tags (e.g. `リモートワーク可`, `完全週休2日制`) |
| `isRemote` | boolean | True if any remote-work tag is present |
| `isNew` | boolean | True if `新着` (new) label is shown |
| `dateUpdated` | string | Last updated date (ISO 8601) |
| `dateExpiry` | string | Listing expiry date (ISO 8601) |
| `jobDescriptionSnippet` | string\|null | Truncated job description from card (`仕事内容`) |
| `requirementsSnippet` | string\|null | Truncated requirements from card (`対象となる方`) |
| `locationSnippet` | string\|null | Location text from card (`勤務地`) |
| `salarySnippet` | string\|null | Salary text from card (`給与`) e.g. `月給272,400円〜` |
| `firstYearIncomeSnippet` | string\|null | First-year income from card (`初年度年収`) e.g. `450万円～800万円` |
| `featuresSnippet` | string\|null | Feature highlights from card (`特徴`), present on some listings |

#### Detail-page fields (populated only when `fetchDetails: true`)

| Field | Type | Description |
|---|---|---|
| `title` | string | Full job title from JSON-LD (may differ from card title) |
| `industry` | string\|null | Industry categories (slash-separated) |
| `datePosted` | string\|null | Original posting date (ISO 8601) |
| `dateExpiry` | string\|null | Valid-through date (ISO 8601) |
| `description` | string\|null | Full job description, HTML stripped |
| `experienceRequirements` | string\|null | Required and preferred experience, HTML stripped |
| `locations` | array\|null | Array of `{ region, city? }` objects with prefecture and ward/city names |
| `salaryMin` | integer\|null | Minimum annual salary in JPY |
| `salaryMax` | integer\|null | Maximum annual salary in JPY |
| `salaryCurrency` | string\|null | Always `"JPY"` when present |
| `salaryUnit` | string\|null | Always `"YEAR"` when present |
| `workHours` | string\|null | Work hours description |
| `benefits` | string\|null | Benefits and perks, HTML stripped |
| `applicationUrl` | string\|null | Direct application URL |
| `companyWebsite` | string\|null | Company website URL |

#### Example output (fetchDetails: true)

```json
{
  "url": "https://tenshoku.mynavi.jp/jobinfo-197220-1-169-1/",
  "jobId": "197220-1-169-1",
  "title": "IT部門スタッフ",
  "companyName": "株式会社クレディセゾン",
  "employmentType": "正社員",
  "isRemote": true,
  "salarySnippet": "月給272,400円〜+各種手当",
  "firstYearIncomeSnippet": "450万円～800万円",
  "locations": [
    { "region": "東京都", "city": "新宿区" },
    { "region": "東京都", "city": "豊島区" }
  ],
  "salaryMin": 4500000,
  "salaryMax": 8000000,
  "salaryCurrency": "JPY",
  "salaryUnit": "YEAR",
  "experienceRequirements": "【必須条件】\nシステムに関する何かしらの知見・経験を有していること...",
  "industry": "クレジット・信販／サービス（その他）",
  "datePosted": "2026-05-05"
}
````

### Notes

- **Rate limiting**: default 1000 ms delay. Reduce to 400–600 ms for faster runs if not hitting 429s.
- **Pagination**: the `<link rel="next">` header drives pagination automatically.
- **Detail cost**: `fetchDetails: true` doubles request count (1 list + 1 detail per job). Price accordingly.
- **Prefecture filter**: uses `srPrefectureCdList` query parameter on the mobile search endpoint. The path-based `/list/p{code}/` URLs serve a different regional template and are not used.
- **Deduplication**: `seenJobIds` set prevents double-counting across pages.
- **Circuit breaker**: 5 consecutive 4xx errors trips the breaker and marks the run FAILED.

# Actor input Schema

## `keyword` (type: `string`):

Job search keyword in Japanese or English (e.g. 'エンジニア', 'IT', '営業', 'nurse'). Leave empty to scrape all listings.

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

Custom MyNavi Tenshoku list page URLs (e.g. https://tenshoku.mynavi.jp/list/o1D/). Overrides keyword and prefectureCode.

## `maxResults` (type: `integer`):

Maximum number of job listings to return. Default: 5 (preview). Set to 0 for unlimited.

## `fetchDetails` (type: `boolean`):

Fetch each job's detail page for full JSON-LD data: structured salary (JPY integers), city-level locations, full description, experience requirements, work hours, benefits and company website. Enabled by default.

## `prefectureCode` (type: `integer`):

Filter jobs by prefecture using the Japanese prefecture code (1=Hokkaido, 13=Tokyo, 14=Kanagawa, 27=Osaka, 40=Fukuoka, 47=Okinawa). Set to 0 for all prefectures.

## `remoteOnly` (type: `boolean`):

Only return listings tagged as remote, telework or work-from-home (リモート, テレワーク, 在宅).

## `employmentTypeFilter` (type: `string`):

Filter by employment type. Leave empty for all types.

## `requestDelayMs` (type: `integer`):

Minimum delay between requests in milliseconds. Default: 1000.

## Actor input object example

```json
{
  "keyword": "developer",
  "maxResults": 5,
  "fetchDetails": true,
  "prefectureCode": 0,
  "remoteOnly": false,
  "employmentTypeFilter": "",
  "requestDelayMs": 1000
}
```

# 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 = {
    "keyword": "developer",
    "maxResults": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("unfenced-group/mynavi-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 = {
    "keyword": "developer",
    "maxResults": 5,
}

# Run the Actor and wait for it to finish
run = client.actor("unfenced-group/mynavi-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 '{
  "keyword": "developer",
  "maxResults": 5
}' |
apify call unfenced-group/mynavi-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "MyNavi Tenshoku Job Scraper",
        "description": "Scrape job listings from MyNavi Tenshoku (tenshoku.mynavi.jp), Japan's largest mid-career job board. No proxy needed.",
        "version": "0.0",
        "x-build-id": "lBM9arydgvIRR8YGW"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/unfenced-group~mynavi-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-unfenced-group-mynavi-scraper",
                "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/unfenced-group~mynavi-scraper/runs": {
            "post": {
                "operationId": "runs-sync-unfenced-group-mynavi-scraper",
                "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/unfenced-group~mynavi-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-unfenced-group-mynavi-scraper",
                "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",
                "properties": {
                    "keyword": {
                        "title": "Search keyword",
                        "type": "string",
                        "description": "Job search keyword in Japanese or English (e.g. 'エンジニア', 'IT', '営業', 'nurse'). Leave empty to scrape all listings."
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Custom MyNavi Tenshoku list page URLs (e.g. https://tenshoku.mynavi.jp/list/o1D/). Overrides keyword and prefectureCode.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxResults": {
                        "title": "Maximum results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of job listings to return. Default: 5 (preview). Set to 0 for unlimited.",
                        "default": 5
                    },
                    "fetchDetails": {
                        "title": "Fetch full job details",
                        "type": "boolean",
                        "description": "Fetch each job's detail page for full JSON-LD data: structured salary (JPY integers), city-level locations, full description, experience requirements, work hours, benefits and company website. Enabled by default.",
                        "default": true
                    },
                    "prefectureCode": {
                        "title": "Prefecture code",
                        "minimum": 0,
                        "maximum": 47,
                        "type": "integer",
                        "description": "Filter jobs by prefecture using the Japanese prefecture code (1=Hokkaido, 13=Tokyo, 14=Kanagawa, 27=Osaka, 40=Fukuoka, 47=Okinawa). Set to 0 for all prefectures.",
                        "default": 0
                    },
                    "remoteOnly": {
                        "title": "Remote / telework only",
                        "type": "boolean",
                        "description": "Only return listings tagged as remote, telework or work-from-home (リモート, テレワーク, 在宅).",
                        "default": false
                    },
                    "employmentTypeFilter": {
                        "title": "Employment type filter",
                        "enum": [
                            "",
                            "正社員",
                            "契約社員",
                            "パート・アルバイト",
                            "業務委託"
                        ],
                        "type": "string",
                        "description": "Filter by employment type. Leave empty for all types.",
                        "default": ""
                    },
                    "requestDelayMs": {
                        "title": "Request delay (ms)",
                        "minimum": 200,
                        "type": "integer",
                        "description": "Minimum delay between requests in milliseconds. Default: 1000.",
                        "default": 1000
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
