# Loker — 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 filter job openings across Indonesia's top job listing platform to find positions that match your skills and preferences. Get detailed information about specific jobs including descriptions, requirements, salary ranges, and company details to make informed application decisions.

**Category:** Jobs | **Website:** [www.loker.id/cari-lowongan-kerja](https://www.loker.id/cari-lowongan-kerja) | **Docs:** [parse.bot/marketplace/645f8e68-5027-47b0-9d8d-b90069598ab2/loker-id-api](https://parse.bot/marketplace/645f8e68-5027-47b0-9d8d-b90069598ab2/loker-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-loker-id-api-645f8e68/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_detail

Get full details for a specific job posting including HTML description, qualifications, responsibilities, screening questions, company information, salary with currency and pay period, street address, and education/experience requirements. Requires the job's URL path components available from search_jobs results (parent_category_slug, child_category_slug, and slug fields). Returns a single job with rich company and location data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `child_category` | string | No | Child category slug from search_jobs results (child_category_slug field, e.g. 'akuntansi-finansial'). |
| `job_slug` | string | Yes | Job slug from search_jobs results (slug field, e.g. 'admin-finance-sanjaya-thanry-bahtera-jakarta-utara'). |
| `parent_category` | string | Yes | Parent category slug from search_jobs results (parent_category_slug field, e.g. 'akuntansi-keuangan'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-loker-id-api-645f8e68/get_job_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"child_category":"<string>","job_slug":"<string>","parent_category":"<string>"}'
```

### search_jobs

Search and list available job openings with optional keyword, job type, and education filters. Returns paginated results with 21 jobs per page. Each job includes salary range, location with region, job type, required skills, experience, education levels, gender preference, and work location type. Paginates via integer page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `education` | string | No | Filter by education level slug (e.g. 'sarjana-s1', 'sma-smk-stm'). Omitting returns all education levels. |
| `job_type` | string | No | Filter by job type slug (e.g. 'purna-waktu' for Full Time, 'kontrak' for Contract). Omitting returns all types. |
| `page` | integer | No | Page number for pagination, starting from 1. |
| `query` | string | No | Search keyword to filter jobs (e.g. 'admin', 'marketing'). Omitting returns all jobs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-loker-id-api-645f8e68/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"education":"<string>","job_type":"<string>","page":"<integer>","query":"<string>"}'
```
