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
pageparameter for search results
Jobs
GET /job104/jobs/search — 2 credits
Search 104.com.tw job listings.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
q | string | No | — | Search keyword |
welfare | string | No | — | Welfare code filter |
area | string | No | — | Area code filter (e.g. 6001001000) |
page | integer | No | 1 | Page number |
count | integer | No | 20 | Results per page (max 100) |
cURL
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.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
jobId | string | Yes | — | 104.com.tw job ID |
cURL
curl -H "x-api-key: sk_byc_xxx" \
https://api.bycrawl.com/job104/jobs/abcd1234Response
{
"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.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
companyId | string | Yes | — | 104.com.tw company ID |
cURL
curl -H "x-api-key: sk_byc_xxx" \
https://api.bycrawl.com/job104/companies/comp5678Response
{
"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..."
}