# Caljobs — 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 listings from California's official CalJOBS database, with the ability to filter results by posting date and specific employers to find opportunities that match your needs. View detailed information about individual positions to learn more about roles that interest you.

**Category:** Jobs | **Website:** [caljobs.ca.gov/](https://caljobs.ca.gov/) | **Docs:** [parse.bot/marketplace/a7e17695-f859-4a04-bdae-fe6a6080fc3e/caljobs-ca-gov-api](https://parse.bot/marketplace/a7e17695-f859-4a04-bdae-fe6a6080fc3e/caljobs-ca-gov-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-caljobs-ca-gov-api-a7e17695/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Get full details for a specific job posting by its ID. Performs an internal search to locate the job and then fetches the full detail page including job description, requirements, and employer information. The job_id comes from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | The job order ID to look up (from search_jobs results[*].job_id). |

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

### search_jobs

Search for job postings by keyword on CalJOBS. Returns up to 100 results per search with job metadata including company, position, salary, location, and posting date. Results are ordered by relevance. The geo filter is fixed to California.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | No | Search keyword such as job title, company name, or occupation. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-caljobs-ca-gov-api-a7e17695/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>"}'
```
