# Offerzen — 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 and retrieve tech job listings from OfferZen's developer marketplace. Access structured job data including required skills, company details, location, and workplace policy, with support for keyword filtering and pagination.

**Category:** Jobs | **Website:** [www.offerzen.com/jobs](https://www.offerzen.com/jobs) | **Docs:** [parse.bot/marketplace/4a0d6b10-ba75-4a24-bfa7-262629200025/offerzen-com-api](https://parse.bot/marketplace/4a0d6b10-ba75-4a24-bfa7-262629200025/offerzen-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-offerzen-com-api-4a0d6b10/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Retrieve full details for a single job by its ID. Returns structured data (skills, locations, company, experience) merged with page-scraped content (role description text, page sections). The job_id comes from search_jobs results. Returns input_not_found when the job no longer exists.

**Estimated cost:** Metered

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

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-offerzen-com-api-4a0d6b10/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 OfferZen job listings with optional workplace policy filter. Returns paginated results (up to 12 jobs per page). Supports multi-page fetching via max_pages. Each job includes structured skills, company info, locations, and experience requirements. Omitting search_string returns all available jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_pages` | integer | No | Maximum number of pages to fetch (up to 12 jobs per page). |
| `page` | integer | No | Starting page number (1-based). |
| `search_string` | string | No | Search keyword to filter jobs (e.g. 'Python', 'React', 'Data Engineer'). Omitting returns all jobs. |
| `workplace_policy` | string | No | Filter by workplace policy. Omitting returns all policies. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-offerzen-com-api-4a0d6b10/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"max_pages":"<integer>","page":"<integer>","search_string":"<string>","workplace_policy":"<string>"}'
```
