# Glints — 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 discover job openings from Glints Indonesia with real-time filters to find positions that match your skills and preferences. Get detailed information about each job listing including requirements, company details, and application links to jumpstart your career search.

**Category:** Jobs | **Website:** [glints.com/id/en/lowongan-kerja](https://glints.com/id/en/lowongan-kerja) | **Docs:** [parse.bot/marketplace/2b97348b-23fd-48e3-b87b-bdaccb43f33a/glints-com-api](https://parse.bot/marketplace/2b97348b-23fd-48e3-b87b-bdaccb43f33a/glints-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-glints-com-api-2b97348b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Get detailed information for a specific job opening by its ID. Returns full job description, requirements, interview process, and metadata. The job_id can be obtained from the search_jobs endpoint results. Includes fields not present in the search listing such as description text, interview process, hiring count, and exact timestamps.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | UUID of the job listing, obtained from search_jobs results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-glints-com-api-2b97348b/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_id":"<string>"}'
```

### search_jobs

Search for job openings on Glints Indonesia. Returns paginated job listings with company info, location, salary, skills, category, and more. Supports filtering by keyword, job type, and work arrangement. When no keyword is provided, returns all available jobs sorted by relevance. Each result includes enough context (company, salary, skills, category) to triage without a detail fetch.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country_code` | string | No | ISO country code to filter jobs by country. |
| `job_type` | string | No | Filter by job type. |
| `keyword` | string | No | Search term to filter jobs by title, skill, or company name. When omitted, returns all available jobs. |
| `page` | integer | No | Page number for pagination, starting at 1. |
| `page_size` | integer | No | Number of results per page, between 1 and 30. |
| `work_arrangement` | string | No | Filter by work arrangement. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-glints-com-api-2b97348b/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country_code":"<string>","job_type":"<string>","keyword":"<string>","page":"<integer>","page_size":"<integer>","work_arrangement":"<string>"}'
```
