# Klob — 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.

> Browse job openings from Klob.id, Indonesia's leading career platform, with powerful filters to find positions that match your skills and interests. Get comprehensive details about each job vacancy including requirements, salary, and company information to make informed career decisions.

**Category:** Jobs | **Website:** [www.klob.id/](https://www.klob.id/) | **Docs:** [parse.bot/marketplace/89b08b03-5ba4-4a15-a5b8-f8e6da1486df/klob-id-api](https://parse.bot/marketplace/89b08b03-5ba4-4a15-a5b8-f8e6da1486df/klob-id-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-klob-id-api-89b08b03/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Get detailed information for a specific job vacancy including full HTML description, qualifications, responsibilities, salary info, work model, location details, required skills, corporate info, and document requirements. The job_vacancy_code is obtained from list_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_code` | string | Yes | Job vacancy code from list_jobs results (e.g. 'kvccrp006897'). Corresponds to job_vacancy_code in list_jobs response. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-klob-id-api-89b08b03/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_code":"<string>"}'
```

### list_jobs

List all available job openings on Klob.id with optional filtering by keyword, location, work model, and job level. Returns paginated results sorted by recency. Each job includes brief descriptions, salary info, location details, work model, and employment status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_level` | string | No | Job level filter. |
| `keyword` | string | No | Search keyword to filter jobs by position name. |
| `location` | string | No | Location ID to filter jobs (e.g. 'dki04' for Kota Administrasi Jakarta Selatan). Values available from the upstream dropdown. |
| `page` | integer | No | Zero-based page number for pagination. |
| `size` | integer | No | Number of results per page. |
| `work_model` | string | No | Work model filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-klob-id-api-89b08b03/list_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_level":"<string>","keyword":"<string>","location":"<string>","page":"<integer>","size":"<integer>","work_model":"<string>"}'
```
