Skip to Content

Job104 API

104.com.tw job search, company profiles, and job details.

  • Supports keyword search with optional welfare and area code filters
  • Job details include contact email and HR information
  • Pagination via page parameter for search results

Jobs

GET /job104/jobs/search — 2 credits

Search 104.com.tw job listings.

ParamTypeRequiredDefaultDescription
qstringNoSearch keyword
welfarestringNoWelfare code filter
areastringNoArea code filter (e.g. 6001001000)
pageintegerNo1Page number
countintegerNo20Results per page (max 100)
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/job104/jobs/search?q=software+engineer&count=10"

Response

{ "jobs": [ { "jobId": "89dv0", "jobName": "客服工程師Service Engineer_高雄", "companyId": "53475027000", "companyName": "正齊科技股份有限公司", "description": "1.在客戶端進行新機器設備的安裝和調試...", "salary": "", "area": "高雄市楠梓區", "tags": ["外商公司"], "link": "https://www.104.com.tw/job/89dv0", "appearedAt": "20260302" } // ... more jobs ], "totalCount": 16819, "page": 1 }

GET /job104/jobs/:jobId — 2 credits

Get job details (with contact email) from 104.com.tw.

ParamTypeRequiredDefaultDescription
jobIdstringYes104.com.tw job ID
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/job104/jobs/abcd1234

Response

{ "jobId": "89dv0", "jobName": "客服工程師Service Engineer_高雄", "link": "https://www.104.com.tw/job/89dv0", "companyId": "53475027000", "companyName": "正齊科技股份有限公司", "email": null, "hrName": "HR", "phone": [], "salary": "待遇面議", "area": "高雄市楠梓區", "experience": "1年以上", "education": "大學", "description": "1.在客戶端進行新機器設備的安裝和調試...", "requirements": "1. 具有半導體/封裝設備相關經驗者尤佳...", "benefits": "★ 團隊一同成長,共享成果...", "updatedAt": "2026/03/02" }

Companies

GET /job104/companies/:companyId — 2 credits

Get company details from 104.com.tw.

ParamTypeRequiredDefaultDescription
companyIdstringYes104.com.tw company ID
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/job104/companies/comp5678

Response

{ "companyId": "53475027000", "companyName": "正齊科技股份有限公司", "phone": "02-1234-5678", "hrName": "Wang", "address": "高雄市楠梓區", "website": "https://...", "industry": "半導體製造業", "employeeCount": "50-100", "capital": "10,000,000 TWD", "description": "Leading semiconductor equipment company..." }