Discover/104.com.tw API
live

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.

Endpoints
2
Updated
10d ago
Try it
Area code filter (e.g., '6001001000' for Taipei city)
Page number for pagination (1-100)
Sort order: '15' for relevance, '1' for date
Search keyword (e.g., '軟體工程師', 'Python', '行銷')
api.parse.bot/scraper/2239d284-b000-4fe7-9d64-196aa368149e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/2239d284-b000-4fe7-9d64-196aa368149e/search_jobs?keyword=engineer' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

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.

Input
ParamTypeDescription
areastringArea code filter (e.g., '6001001000' for Taipei city)
pageintegerPage number for pagination (1-100)
orderstringSort order: '15' for relevance, '1' for date
keywordrequiredstringSearch keyword (e.g., '軟體工程師', 'Python', '行銷')
Response
{
  "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.

Common use cases
  • Aggregate software engineering job listings in Taipei using the area filter and 軟體工程師 keyword to track hiring demand
  • Monitor salary ranges for specific roles by collecting salary_min and salary_max from get_job_detail over time
  • Build a job recommendation engine that maps candidate skills against the skills array returned in job detail responses
  • Track which industries are posting the most roles by aggregating the industry field across search_jobs results
  • Detect newly posted listings by sorting with order=1 (date) and comparing appear_date values from get_job_detail
  • Compile company hiring profiles by collecting all job postings sharing a company_no across paginated search results
  • Feed a research dataset of Taiwanese labor market activity using total_count trends across keyword queries
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does 104.com.tw have an official developer API?+
104.com.tw does not publish a public developer API. The platform is a consumer-facing job board without documented third-party API access.
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?+
Results are returned in pages of up to 32 jobs. The 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.
Does the API cover resume data, application status, or company reviews?+
Not currently. The API covers job listing search and individual posting details. Resume profiles, application tracking, and employer review data are not exposed. You can fork this API on Parse and revise it to add endpoints targeting those data types.
Are job listings from other Taiwanese job boards like 1111 or Cake included?+
No — the API covers only 104.com.tw listings. Data from 1111.com.tw, cake.me, or other Taiwanese job platforms is not included. You can fork this API on Parse and revise it to target a different source.
Page content last updated . Spec covers 2 endpoints from www.104.com.tw.
Related APIs in JobsSee all →
ca.indeed.com API
Search for jobs across Canada and access detailed job listings, company profiles, employee reviews, and salary information all in one place. Build recruitment tools, career research applications, or job market analysis platforms with comprehensive employment data from Indeed Canada.
devex.com API
Search and explore global development opportunities including tenders, grants, job postings, news, organizations, and events all in one place. Find funding details, discover career opportunities, and stay updated on international development initiatives through a single integrated platform.
metacareers.com API
Search and browse Meta job openings across all departments and locations. Filter by keyword, experience level, or role category — including University Graduate and AR/VR specializations — and retrieve comprehensive details for each listing, including job description, requirements, salary range, and application link.
naukri.com API
naukri.com API
nvidia.com API
nvidia.com API
airtasker.com API
Search and browse Airtasker tasks by location, category, price, and keywords, then access detailed task information and user profiles. Get location suggestions and category recommendations to discover available work and service opportunities in your area.
amazon.jobs API
Search and browse Amazon job openings by keywords, location, and category, then view detailed information about specific positions. Filter results across multiple job categories and locations with easy pagination.
usajobs.gov API
Search federal job openings and view detailed job announcements from USAJobs.gov, plus access historical job data and reference codes to help you find the right government position. Filter and explore thousands of federal career opportunities with comprehensive job details all in one place.
104.com.tw API – Taiwan Job Board Search · Parse