Discover/Com API
live

Com API104.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.

Endpoint health
verified 7d ago
get_job_detail
search_jobs
2/2 passing latest checkself-healing
Endpoints
2
Updated
21d ago

What is the Com 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.

Try it
Area code filter (e.g., '6001001000' for Taipei city)
Page number for pagination (1-100)
Sort order for results
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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/2239d284-b000-4fe7-9d64-196aa368149e/search_jobs?area=6001001000&page=1&order=15&keyword=Python' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace 104-com-tw-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: 104.com.tw Job Search SDK — search Taiwan's largest job board."""
from parse_apis.job104 import Job104, Sort, JobNotFound

client = Job104()

# Search for Python jobs sorted by date, cap at 5 results
for job in client.jobsummaries.search(keyword="Python", sort=Sort.DATE, limit=5):
    print(job.job_name, job.company_name, job.salary_low, job.salary_high)

# Drill into the first result's full details
summary = client.jobsummaries.search(keyword="資料工程師", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.job_name, detail.salary, detail.work_experience)
    print(detail.education, detail.welfare_description[:100])

# Fetch a job directly by ID
try:
    job = client.jobs.get(job_id="8ttan")
    print(job.job_name, job.company_name, job.address_region)
except JobNotFound as exc:
    print(f"Job not found: {exc.job_id}")

print("exercised: jobsummaries.search / summary.details / jobs.get / JobNotFound error handling")
All endpoints · 2 totalmissing one? ·

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. Sort order controls relevance vs recency ranking.

Input
ParamTypeDescription
areastringArea code filter (e.g., '6001001000' for Taipei city)
pageintegerPage number for pagination (1-100)
orderstringSort order for results
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"
  }
}

About the Com API

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.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for 104.com.tw — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when 104.com.tw changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official 104.com.tw API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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,000100 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 104.com.tw.
Related APIs in JobsSee all →
timesjobs.com API
Search and browse job listings from TimesJobs.com to find positions by role, category, and company, while discovering popular job roles, featured employers, and detailed job information. Filter opportunities using available facets and explore career statistics to match your skills with the right opportunities.
ph.jobstreet.com API
Search for jobs and explore detailed listings from JobStreet Philippines, including job descriptions, company profiles, and hiring information. Discover employment opportunities by browsing job classifications and viewing all open positions from specific companies.
indeed.com API
Search and discover job opportunities on Indeed while accessing detailed job descriptions, company profiles, and salary insights all in one place. Get comprehensive career information including specific compensation data to help you find and evaluate the right job opportunity for you.
totaljobs.com API
Search and browse job listings from across the UK on TotalJobs, then access detailed information about specific positions including requirements, salary, and application details. Quickly compare opportunities and find roles that match your criteria.
shine.com API
Search and discover job listings on Shine.com with detailed information including job descriptions, categories, locations, and top hiring companies. Find similar job opportunities and explore roles across different industries and geographical areas to match your career goals.
seek.com.au API
Search for job listings on SEEK Australia and retrieve detailed information about positions. Browse jobs across any keyword, title, and location, and access full job descriptions, classifications, salary info, and employment details.
zhipin.com API
Access data from zhipin.com.
cv.lv API
Search for job listings on CV.lv and access detailed job descriptions, categories, locations, and information about top employers. Find the right opportunity by browsing available positions across different industries and regions.