# Kitalulus — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse job openings from Indonesia's KitaLulus platform with customizable filters, then view detailed information about specific positions including requirements, salary, and company details. Stay updated on the latest employment opportunities tailored to your career interests.

**Category:** Jobs | **Website:** [www.kitalulus.com/](https://www.kitalulus.com/) | **Docs:** [parse.bot/marketplace/3fa60ca7-dd72-41a9-93d1-04dbc9ae3d55/kitalulus-com-api](https://parse.bot/marketplace/3fa60ca7-dd72-41a9-93d1-04dbc9ae3d55/kitalulus-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-kitalulus-com-api-3fa60ca7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_detail

Get detailed information about a specific job opening by its slug. Returns full job description, requirements, company details, benefits, working hours, salary, location, and skill tags. The slug can be obtained from the list_jobs endpoint results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Job listing slug identifier from list_jobs results (e.g. kitchen-staff-2xxq). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kitalulus-com-api-3fa60ca7/get_job_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_jobs

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. Paginates via zero-based page number. Each job summary includes slug, position name, salary bounds, location, company info, and job type.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `education_level` | string | No | Filter by minimum education level. |
| `job_specialization` | string | No | Filter by job specialization category. |
| `job_type` | string | No | Filter by employment type. |
| `limit` | integer | No | Number of jobs per page, between 1 and 100. |
| `location_site` | string | No | Filter by work location policy. |
| `page` | integer | No | Zero-based page number for pagination. |
| `sort_by` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kitalulus-com-api-3fa60ca7/list_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"education_level":"<string>","job_specialization":"<string>","job_type":"<string>","limit":"<integer>","location_site":"<string>","page":"<integer>","sort_by":"<string>"}'
```
