104.com.tw APIwww.104.com.tw ↗
Search and retrieve job listings from 104.com.tw, Taiwan's largest job board. Get job titles, salaries, skills, company info, and full posting details.
curl -X GET 'https://api.parse.bot/scraper/2239d284-b000-4fe7-9d64-196aa368149e/search_jobs?keyword=engineer' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for jobs by keyword with optional filters. Returns paginated job listings with basic info including title, company, salary, location, skills, and more. Results are paginated with up to 32 jobs per page and a maximum of 100 pages.
| Param | Type | Description |
|---|---|---|
| area | string | Area code filter (e.g., '6001001000' for Taipei city) |
| page | integer | Page number for pagination (1-100) |
| order | string | Sort order: '15' for relevance, '1' for date |
| keywordrequired | string | Search keyword (e.g., '軟體工程師', 'Python', '行銷') |
{
"type": "object",
"fields": {
"jobs": "array of job objects with fields: job_id, job_no, job_name, company_name, company_no, industry, description, salary_low, salary_high, job_address, area, lat, lon, job_type, appear_date, apply_count, link, company_link, tags, job_categories, education, remote_work_type, employee_count, work_period, skills, language_requirements",
"page": "integer - current page number",
"count": "integer - number of jobs on this page",
"total_count": "integer - total number of matching jobs",
"total_pages": "integer - total number of pages"
},
"sample": {
"data": {
"jobs": [
{
"lat": 25.0312347,
"lon": 121.6111949,
"area": "台北市南港區",
"link": "https://www.104.com.tw/job/8ztkb",
"tags": [
"wf2",
"wf8",
"wf26"
],
"job_id": "8ztkb",
"job_no": "15108203",
"skills": [
"LLM",
"Python",
"Github"
],
"industry": "電腦軟體服務業",
"job_name": "AI研發工程師",
"job_type": 1,
"education": [
4,
5,
6
],
"company_no": "130000000218089",
"salary_low": 0,
"appear_date": "20260430",
"apply_count": 13,
"description": "精通 Python,能撰寫高效能的非同步推論服務...",
"job_address": "台北市南港區",
"salary_high": 0,
"work_period": "",
"company_link": "https://www.104.com.tw/company/1a2x6bmnl5",
"company_name": "新加坡商納新科技有限公司台灣分公司",
"employee_count": 0,
"job_categories": [
2007001020,
2007001012,
2007001004
],
"remote_work_type": 0,
"language_requirements": []
}
],
"page": 1,
"count": 32,
"total_count": 9244,
"total_pages": 100
},
"status": "success"
}
}About the 104.com.tw API
The 104.com.tw API provides access to Taiwan's largest job board through 2 endpoints, returning structured job data including titles, salary ranges, required skills, location, and full job descriptions. The search_jobs endpoint lets you query thousands of listings by keyword with area and sort filters, while get_job_detail retrieves complete posting data — education requirements, welfare details, and company profile URLs — for any individual listing.
Search Jobs
The search_jobs endpoint accepts a required keyword parameter (supporting Chinese and English terms such as 軟體工程師, Python, or 行銷) alongside optional filters: area for geographic targeting using region codes (e.g., 6001001000 for Taipei City), page for pagination (1–100), and order to sort by relevance (15) or posting date (1). Each response includes up to 32 job objects per page, along with total_count and total_pages to support full result traversal. Individual job objects carry job_id, job_no, job_name, company_name, company_no, industry, a short description, and salary_low/salary_hi values.
Job Detail
Passing a job_id from search results to get_job_detail returns the complete posting record. This includes structured salary fields (salary_min, salary_max, and a human-readable salary string), education requirements, an array of skills, specialty items, appear_date, and a company_url pointing to the employer's profile. If a listing has expired or been removed, the endpoint returns a stale_input indicator rather than erroring silently.
Coverage and Data Shape
104.com.tw is the dominant job platform in Taiwan and lists roles across industries including technology, finance, manufacturing, and hospitality. Salary data is returned both as a descriptive string and as integer min/max values where the employer provides a range. Listings are in Traditional Chinese; keyword searches work in both Chinese and romanized terms. Pagination caps at 100 pages (up to 3,200 results per query), so narrow searches with specific keywords or area codes yield the most targeted results.
- Aggregate software engineering job listings in Taipei using the
areafilter and軟體工程師keyword to track hiring demand - Monitor salary ranges for specific roles by collecting
salary_minandsalary_maxfromget_job_detailover time - Build a job recommendation engine that maps candidate skills against the
skillsarray returned in job detail responses - Track which industries are posting the most roles by aggregating the
industryfield acrosssearch_jobsresults - Detect newly posted listings by sorting with
order=1(date) and comparingappear_datevalues fromget_job_detail - Compile company hiring profiles by collecting all job postings sharing a
company_noacross paginated search results - Feed a research dataset of Taiwanese labor market activity using
total_counttrends across keyword queries
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does 104.com.tw have an official developer API?+
What does `get_job_detail` return that `search_jobs` does not?+
search_jobs returns summary-level fields: job_name, company_name, industry, salary_low, salary_hi, and a short description. get_job_detail adds structured salary_min/salary_max integers, a skills array, specialty items, education requirements, appear_date, and company_url. It also returns a stale_input signal for listings that have been removed or expired.How does pagination work in `search_jobs`, and are there limits?+
page parameter accepts values from 1 to 100, capping retrievable results at 3,200 per query. The response includes total_count and total_pages so you can determine whether additional pages exist. If a query matches more than 3,200 listings, refining by keyword or area is the only way to access the remaining results.