Boss直聘 (BOSS Zhipin)
Overview
China's leading direct-recruiting job platform (Chinese web / job board archetype). Job seekers chat directly with bosses/HR. Search jobs, view details with salary info, explore company profiles, and get salary statistics.
Workflows
Find and explore jobs
searchJobs(query, city) → job cards with jobLink
getJobDetail(jobId ← jobLink) → full posting with company.link
getCompanyProfile(companyId ← company.link) → company info + open positions
Research salaries
getSalary(query, city) → aggregated salary ranges for a position in a city
Operations
| Operation |
Intent |
Key Input |
Key Output |
Notes |
| searchJobs |
search jobs by keyword & city |
query, city |
jobName, salaryDesc, company, jobLink, companyLink |
entry point; paginated |
| getJobDetail |
get full job posting |
jobId ← searchJobs.jobLink |
jobName, salaryDesc, jobDescription, company, boss, tags |
|
| getCompanyProfile |
get company profile |
companyId ← getJobDetail.company.link |
name, industry, size, stage, description, jobs |
|
| getSalary |
salary statistics for a position |
query, city |
averageMin, averageMax, minRange, maxRange, samples |
aggregated from search listings |
| getCities |
get all cities with codes |
— |
hotCityList, cityList (province-grouped) |
entry point; reference data |
| getIndustries |
get industry categories |
— |
code, name, subLevelModelList |
reference data |
| getFilterConditions |
get search filter options |
— |
salaryList, experienceList, degreeList, stageList, scaleList, jobTypeList |
reference data |
Quick Start
# Search for Java jobs in Beijing
openweb boss exec searchJobs '{"query":"Java","city":"101010100"}'
# Get job details (use jobLink from search)
openweb boss exec getJobDetail '{"jobId":"/job_detail/xxx.html"}'
# Get company profile (use company.link from job detail)
openweb boss exec getCompanyProfile '{"companyId":"xxx.html"}'
# Get salary stats for product managers in Shanghai
openweb boss exec getSalary '{"query":"产品经理","city":"101020100"}'
1---2name: boss3description: Boss直聘 (BOSS Zhipin)4---5# Boss直聘 (BOSS Zhipin)67## Overview8China's leading direct-recruiting job platform (Chinese web / job board archetype). Job seekers chat directly with bosses/HR. Search jobs, view details with salary info, explore company profiles, and get salary statistics.910## Workflows1112### Find and explore jobs131. `searchJobs(query, city)` → job cards with `jobLink`142. `getJobDetail(jobId ← jobLink)` → full posting with `company.link`153. `getCompanyProfile(companyId ← company.link)` → company info + open positions1617### Research salaries181. `getSalary(query, city)` → aggregated salary ranges for a position in a city1920## Operations2122| Operation | Intent | Key Input | Key Output | Notes |23|-----------|--------|-----------|------------|-------|24| searchJobs | search jobs by keyword & city | query, city | jobName, salaryDesc, company, jobLink, companyLink | entry point; paginated |25| getJobDetail | get full job posting | jobId ← searchJobs.jobLink | jobName, salaryDesc, jobDescription, company, boss, tags | |26| getCompanyProfile | get company profile | companyId ← getJobDetail.company.link | name, industry, size, stage, description, jobs | |27| getSalary | salary statistics for a position | query, city | averageMin, averageMax, minRange, maxRange, samples | aggregated from search listings |28| getCities | get all cities with codes | — | hotCityList, cityList (province-grouped) | entry point; reference data |29| getIndustries | get industry categories | — | code, name, subLevelModelList | reference data |30| getFilterConditions | get search filter options | — | salaryList, experienceList, degreeList, stageList, scaleList, jobTypeList | reference data |3132## Quick Start3334```bash35# Search for Java jobs in Beijing36openweb boss exec searchJobs '{"query":"Java","city":"101010100"}'3738# Get job details (use jobLink from search)39openweb boss exec getJobDetail '{"jobId":"/job_detail/xxx.html"}'4041# Get company profile (use company.link from job detail)42openweb boss exec getCompanyProfile '{"companyId":"xxx.html"}'4344# Get salary stats for product managers in Shanghai45openweb boss exec getSalary '{"query":"产品经理","city":"101020100"}'46```