# Karirlink — 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 Karirlink.id, Indonesia's leading platform for fresh graduates and entry-level positions, with customizable filters to find roles that match your experience level. View complete job details including requirements, responsibilities, and application information for each listing.

**Category:** Jobs | **Website:** [karirlink.id/](https://karirlink.id/) | **Docs:** [parse.bot/marketplace/458f1495-6be6-47f7-81a9-48fcb31c18b8/karirlink-id-api](https://parse.bot/marketplace/458f1495-6be6-47f7-81a9-48fcb31c18b8/karirlink-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-karirlink-id-api-458f1495/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Get detailed information for a specific job posting including full description and requirements. Uses the permalink slug from list_jobs results. Each job page contains the position title, company, location, employment type, salary range, a prose description of duties, and a requirements section.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `permalink` | string | Yes | Job permalink slug from list_jobs results (e.g. 'accounting-staff-pt-dewasutratex-kota-cimahi-1781107026050'). |

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

### list_jobs

List available job openings with pagination. Returns 12 jobs per page. Supports filtering by search query, location, employment type, workplace type, and job category. Results are ordered by most recently posted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Job category filter by numeric ID. |
| `employment_type` | string | No | Employment type filter. |
| `location` | string | No | Location filter as a slug (e.g. 'kota-jakarta-pusat', 'kab-bandung-barat'). Values available from the site's location dropdown. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword for job title or company name (e.g. 'manager', 'engineer'). Converted to slug format internally. |
| `workplace_type` | string | No | Workplace type filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-karirlink-id-api-458f1495/list_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","employment_type":"<string>","location":"<string>","page":"<integer>","query":"<string>","workplace_type":"<string>"}'
```
