kitalulus.com APIwww.kitalulus.com ↗
Access KitaLulus job listings via API. Filter by job type, location policy, education level, and specialization. Get full job details including benefits and company info.
curl -X GET 'https://api.parse.bot/scraper/1c83c9c3-9388-4a9b-a738-88d6f9094a69/list_jobs?limit=5' \ -H 'X-API-Key: $PARSE_API_KEY'
List available job openings with optional filters and pagination. Returns jobs sorted by the specified criteria. When no filters are applied, returns the most recently updated jobs across all categories.
| Param | Type | Description |
|---|---|---|
| page | integer | Zero-based page number for pagination. |
| limit | integer | Number of jobs per page, between 1 and 100. |
| sort_by | string | Sort order for results. Accepts exactly one of: updatedAt, isHighlighted. |
| job_type | string | Filter by employment type. Accepts exactly one of: FREELANCE, FULL_TIME, PART_TIME, INTERNSHIP, CONTRACT. |
| location_site | string | Filter by work location policy. Accepts exactly one of: REMOTE, ON_SITE, REMOTE_PARTIAL, FIELDWORK. |
| education_level | string | Filter by minimum education level. Accepts exactly one of: MIDDLE_SCHOOL, HIGH_SCHOOL, DIPLOMA, BACHELOR, MASTER, DOCTORATE, OTHER. |
| job_specialization | string | Filter by job specialization category. Accepts exactly one of: Admin, Akuntansi, Sales, IT, Guru, Driver, Hotel, MisiSeru. |
{
"type": "object",
"fields": {
"jobs": "array of job summary objects containing id, slug, position_name, salary bounds, location, company info, and job type",
"page": "integer, current page number",
"count": "integer, number of jobs returned on this page",
"limit": "integer, page size used"
},
"sample": {
"data": {
"jobs": [
{
"id": "L2YWGJGGRxU",
"city": "Kabupaten Bojonegoro",
"slug": "sales-wifi-myrepublik-bojonegoro-n6wi",
"job_type": "Kontrak",
"province": "Jawa Timur",
"updated_at": 1780318022000000,
"company_name": "PT Agape Solusi Andalan",
"company_slug": "pt-agape-solusi-andalan-3nbn",
"location_site": "Kerja di lapangan (Fieldwork)",
"position_name": "SALES WIFI MYREPUBLIK BOJONEGORO",
"is_highlighted": false,
"updated_at_str": "Terakhir diperbarui hari ini",
"education_level": "Minimal SMA/SMK/Sederajat",
"company_logo_url": "https://img.kitalulus.com/2025-08-28/klep/fcEoZs0ya_aLM-t-5XX-o/logo-asa-new-final.jpg",
"salary_lower_bound": 2000000,
"salary_upper_bound": 4500000
}
],
"page": 0,
"count": 5,
"limit": 5
},
"status": "success"
}
}About the kitalulus.com API
The KitaLulus API provides access to Indonesian job listings through 2 endpoints, returning job summaries and full position details sourced from kitalulus.com. The list_jobs endpoint supports filtering by employment type, work location policy, education requirement, and job specialization, while get_job_detail returns complete information including company profile, benefits array, working hours, skill tags, and candidate requirements for any specific posting.
Browsing and Filtering Job Listings
The list_jobs endpoint returns paginated job summaries from KitaLulus, Indonesia's job platform. Pagination uses a zero-based page parameter alongside a limit (1–100 results per page). Results can be sorted by updatedAt or isHighlighted. Without filters, the endpoint returns the most recently updated jobs across all categories. Each job object in the returned jobs array carries enough information to identify a position and construct a slug for further lookup.
Filtering by Type, Location, Education, and Specialization
Four filter parameters narrow results significantly. job_type accepts FREELANCE, FULL_TIME, PART_TIME, INTERNSHIP, or CONTRACT. location_site filters by work arrangement: REMOTE, ON_SITE, REMOTE_PARTIAL, or FIELDWORK. education_level sets a minimum qualification from MIDDLE_SCHOOL through BACHELOR and MASTER. job_specialization targets sectors such as IT, Sales, Akuntansi, Guru, Driver, and others — using the Indonesian-language category names as they appear on the platform.
Retrieving Full Job Details
The get_job_detail endpoint accepts a slug (e.g. admin-ar-jakarta-djti) obtained from list_jobs results. The response includes id, city, slug, job_role, job_type, gender, max_age, a company object with employer details, and a benefits array listing perks by name. This endpoint is the primary way to retrieve the full job description, requirements, and skill tags for a specific posting.
- Aggregate Indonesian remote job listings by filtering
location_site=REMOTEand syncing to a local database - Build a job alert system that polls
list_jobssorted byupdatedAtto surface newly posted positions - Filter internship opportunities by
job_type=INTERNSHIPandeducation_level=BACHELORfor student-facing apps - Display company-specific job counts and benefit summaries using the
companyobject andbenefitsarray fromget_job_detail - Power a job recommendation engine by matching user-preferred specializations against the
job_specializationfilter - Track how many highlighted jobs exist in a given category by combining
sort_by=isHighlightedwith a specialization filter - Populate a freelance marketplace feed by continuously fetching
job_type=FREELANCElistings with pagination
| 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 KitaLulus have an official public developer API?+
What does `get_job_detail` return beyond what `list_jobs` provides?+
get_job_detail returns the full job record: the company object with employer details, a benefits array of perk names, gender and max_age candidate requirements, job_role, job_type, city, and skill tags. The list_jobs endpoint returns summary objects sufficient for browsing and slug extraction, but not the complete description or requirements.Are there limitations on how `job_specialization` values are expressed?+
job_specialization filter uses Indonesian-language category names as they appear on the platform (e.g. Akuntansi for accounting, Guru for teaching). Passing English translations or variations not in the accepted list will not match any results. Use only the exact enumerated values when constructing requests.Does the API support searching jobs by keyword or company name?+
list_jobs endpoint filters by job_type, location_site, education_level, and job_specialization, but does not accept a free-text keyword or company name parameter. You can fork this API on Parse and revise it to add a keyword search endpoint.Does the API expose salary or compensation data for job listings?+
get_job_detail cover benefits, job_role, job_type, company, city, max_age, and gender, but do not include a dedicated salary or compensation field. Many KitaLulus listings omit salary details on the platform itself. You can fork this API on Parse and revise it to surface any salary fields that are present in individual listings.