# Ph Jobstreet — 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 for jobs and explore detailed listings from JobStreet Philippines, including job descriptions, company profiles, and hiring information. Discover employment opportunities by browsing job classifications and viewing all open positions from specific companies.

**Category:** Jobs | **Website:** [ph.jobstreet.com/](https://ph.jobstreet.com/) | **Docs:** [parse.bot/marketplace/87f5b441-27b1-4e1c-a4e9-ed85c1575637/ph-jobstreet-com-api](https://parse.bot/marketplace/87f5b441-27b1-4e1c-a4e9-ed85c1575637/ph-jobstreet-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-ph-jobstreet-com-api-87f5b441/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_jobs

Retrieve active job listings for a specific company by its advertiser ID. Returns the same paginated job listing format as search_jobs. The advertiser_id is found in search results under advertiser.id.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `advertiser_id` | string | Yes | The advertiser ID for the company (found in search results under advertiser.id). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ph-jobstreet-com-api-87f5b441/get_company_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"advertiser_id":"<string>"}'
```

### get_company_profile

Retrieve a company's full profile including overview, review ratings, perks and benefits, gallery, branding, and an AI-generated review summary. The company_id is found in search_jobs results under employer.companyId or in company page URLs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_id` | string | Yes | The numeric company ID (found in search results under employer.companyId or company page URLs). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ph-jobstreet-com-api-87f5b441/get_company_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_id":"<string>"}'
```

### get_job_classifications

Retrieve all available facets (classification, location, work type) with their numeric IDs and current job counts. Returns the full taxonomy in a single page. Use to discover valid classification IDs for search_jobs filtering.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ph-jobstreet-com-api-87f5b441/get_job_classifications \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_job_details

Retrieve full details of a single job posting by its ID. Returns the job's content (HTML), salary, work types, advertiser info, location, classifications, company profile summary, and work arrangements. A separate round-trip from search — use when the teaser in search results is insufficient.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | The job posting ID (numeric string from search_jobs results). |

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

### search_jobs

Full-text search over job postings on JobStreet Philippines. Accepts keyword, location, and classification filters. Paginates via integer page counter; each page returns up to page_size results. totalCount reflects the full matching set server-side.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `classification` | string | No | Numeric job classification ID to filter results. IDs discoverable via get_job_classifications. |
| `keywords` | string | No | Search keywords matching job title or skills. |
| `location` | string | No | Location filter such as city or region name (e.g. 'Manila', 'Metro Manila', 'Cebu'). |
| `page` | integer | No | Page number for pagination (1-based). |
| `page_size` | integer | No | Number of results per page (max 30). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ph-jobstreet-com-api-87f5b441/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"classification":"<string>","keywords":"<string>","location":"<string>","page":"<integer>","page_size":"<integer>"}'
```
