# OCC Mundial — 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 job listings across OCC.com.mx, Mexico's largest job board, by keyword and location. Retrieve paginated results with titles, companies, salaries, and posting dates, then fetch full listing details including job descriptions, required skills, benefits, and company information.

**Category:** Jobs | **Website:** [www.occ.com.mx/](https://www.occ.com.mx/) | **Docs:** [parse.bot/marketplace/e59b5897-b48c-4352-a85e-c34f6262a156/occ-com-mx-api](https://parse.bot/marketplace/e59b5897-b48c-4352-a85e-c34f6262a156/occ-com-mx-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-occ-com-mx-api-e59b5897/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Get full details for a specific job listing by its offer ID. Returns comprehensive information including full description, salary range, skills, benefits, company info, and more. The offer_id can be obtained from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `offer_id` | string | Yes | The offer ID of the job listing (obtained from search_jobs results[*].offer_id) |

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

### search_jobs

Search for job listings by keyword and optionally filter by location. Returns a paginated list of jobs with basic information including title, company, salary, location, and posted date. Each page contains up to 22 results. Paginates via integer page counter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | Job search keyword (e.g., 'desarrollador', 'contador', 'ingeniero') |
| `limit` | integer | No | Maximum number of results to return per page (max 22) |
| `location` | string | No | Location filter as URL slug (e.g., 'ciudad-de-mexico', 'monterrey', 'guadalajara'). Leave empty for all locations. |
| `page` | integer | No | Page number for pagination |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-occ-com-mx-api-e59b5897/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","limit":"<integer>","location":"<string>","page":"<integer>"}'
```
