# Id Indeed — 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 across Indonesia with detailed information like job titles, companies, locations, salaries, and full job descriptions. Browse thousands of listings from Indeed Indonesia to find opportunities that match your career goals.

**Category:** Jobs | **Website:** [id.indeed.com/?from=gnav-jobsearch--indeedmobile](https://id.indeed.com/?from=gnav-jobsearch--indeedmobile) | **Docs:** [parse.bot/marketplace/34c65013-7518-4c7f-a57d-9f34a210f928/id-indeed-com-api](https://parse.bot/marketplace/34c65013-7518-4c7f-a57d-9f34a210f928/id-indeed-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-id-indeed-com-api-34c65013/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Retrieve the full detail page for a single job listing. Returns the complete job description text, company info, location, job types, salary, and rating. The job_key identifier is obtained from search_jobs results. Returns stale_input if the job_key is empty; upstream_error if the page cannot be parsed (e.g. listing removed).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_key` | string | Yes | Unique job identifier (16-character hex string). Obtained from search_jobs results[*].job_key. |

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

### search_jobs

Search for job listings on Indeed Indonesia. Returns up to 15 results per page with job title, company, location, rating, salary, and posting age. Paginate by incrementing the page parameter. An empty query returns all listings; an empty location returns all regions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | City, state, or region to filter jobs by location. Empty string returns all locations. |
| `page` | integer | No | Page number for pagination (1-indexed). Each page returns up to 15 results. |
| `query` | string | No | Job title, keywords, or company name to search for. |

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