karirlink.id APIkarirlink.id ↗
Access entry-level and fresh graduate job listings from Karirlink.id. Filter by location, employment type, category, and more. Get full job details via API.
curl -X GET 'https://api.parse.bot/scraper/95441635-11f1-496b-b6c6-7a5f5ab9b755/list_jobs' \ -H 'X-API-Key: $PARSE_API_KEY'
List available job openings with pagination. Returns 12 jobs per page. Supports filtering by search query, location, employment type, workplace type, and job category.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| query | string | Search keyword for job title or company name (e.g. 'manager', 'engineer'). Converted to slug format internally. |
| category | string | Job category filter by numeric ID. Accepts: 1 (Akuntansi/Keuangan), 2 (Sumber Daya Manusia/Personalia), 3 (Penjualan/Pemasaran), 4 (Seni/Media/Komunikasi), 5 (Hotel/Restoran), 6 (Pendidikan), 7 (Komputer/Teknologi Informasi), 8 (Kesehatan dan Kedokteran), 9 (Administrasi dan Manajemen), 10-15 (additional categories). |
| location | string | Location filter as a slug (e.g. 'kota-jakarta-pusat', 'kab. simeulue'). Values available from the site's location dropdown. |
| workplace_type | string | Workplace type filter. Accepts: 1 (Onsite), 2 (Remote), 3 (Hybrid). |
| employment_type | string | Employment type filter. Accepts: 1 (Full Time), 2 (Part Time), 3 (Kontrak), 4 (Magang/Internship), 5 (Freelance). |
{
"type": "object",
"fields": {
"jobs": "array of job objects with id, title, company, location, employment_type, workplace_type, salary_text, salary_min, salary_max, started_at, ended_at, created_at, permalink",
"page": "integer",
"total_pages": "integer",
"jobs_on_page": "integer"
},
"sample": {
"jobs": [
{
"id": 77980,
"title": "Polibatam Internship 2026",
"company": "PT. Sumitomo Wiring Systems Batam Indonesia",
"ended_at": "2026-07-28T02:10:05.000000Z",
"location": "Kota Batam, Kepulauan Riau",
"permalink": "polibatam-internship-2026-pt-sumitomo-wiring-systems-batam-indonesia-kota-batam-kepulauan-riau-1780020605334",
"created_at": "2026-05-29T02:10:05.000000Z",
"salary_max": 0,
"salary_min": 0,
"started_at": "2026-05-29T02:10:05.000000Z",
"salary_text": "Informasi Tidak Tersedia",
"workplace_type": "Onsite",
"employment_type": "Internship"
}
],
"page": 1,
"total_pages": 130,
"jobs_on_page": 12
}
}About the karirlink.id API
The Karirlink.id API provides access to job listings from Indonesia's fresh graduate and entry-level job portal through 2 endpoints. The list_jobs endpoint returns up to 12 jobs per page with fields including title, company, location, salary range, employment type, and workplace type. The get_job_details endpoint returns full descriptions and requirements for a specific posting.
Listing and Filtering Jobs
The list_jobs endpoint returns paginated job listings from Karirlink.id, 12 results per page. Each job object in the jobs array includes id, title, company, location, employment_type, workplace_type, salary_text, salary_min, salary_max, and a permalink slug. The response also includes page, total_pages, and jobs_on_page for pagination control.
Filtering is available through several parameters: query accepts a keyword like 'engineer' or 'manager' to match job title or company name; location takes a slug value such as 'kota-jakarta-pusat'; category accepts a numeric ID (e.g. 1 for Akuntansi/Keuangan, 2 for Sumber Daya Manusia); employment_type maps to values 1–5 covering Full Time, Part Time, Kontrak, Magang/Internship, and Freelance; and workplace_type accepts 1 (Onsite), 2 (Remote), or 3 (Hybrid).
Job Details
The get_job_details endpoint takes a permalink slug from a list_jobs result and returns the full posting. Response fields include title, company, location, salary, employment_type, permalink, description, and requirements. This is where structured role responsibilities and candidate qualifications are exposed, making it suitable for displaying or analyzing full job postings.
Coverage Scope
Karirlink.id focuses specifically on the Indonesian job market, with an emphasis on fresh graduate and entry-level roles. Location slugs correspond to Indonesian cities and regencies. Category IDs map to Indonesian-language occupational sectors. Salary fields return both a human-readable salary_text string and numeric salary_min/salary_max values where disclosed.
- Aggregate entry-level job listings for Indonesian fresh graduates into a curated job board
- Monitor salary ranges by category or location using salary_min and salary_max fields
- Build a remote/hybrid job feed for Indonesian candidates by filtering on workplace_type
- Track internship (Magang) postings by filtering employment_type to value 4
- Compare job availability across Indonesian cities using the location slug filter
- Enrich a recruiting CRM with full job descriptions and requirements via get_job_details
- Analyze which job categories have the most openings by iterating category filter values
| 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 Karirlink.id offer an official developer API?+
What does list_jobs return for salary data, and is it always present?+
salary_text (a human-readable string), salary_min, and salary_max. Salary disclosure is at the employer's discretion, so these fields may be empty or null for listings where the company has not stated a range.Does the API return company profile pages or recruiter contact details?+
How does pagination work in list_jobs?+
page (current page number), total_pages (total available pages), and jobs_on_page (count of results on the current page). Pass the page integer parameter to advance through results.Can I retrieve job listings by specific location values?+
location parameter accepts slug-formatted strings corresponding to Indonesian cities and regencies, such as 'kota-jakarta-pusat' or 'kab. simeulue'. The available location slugs mirror the location facets used on the Karirlink.id site. Slugs for less common areas may return zero results if no active listings exist.