# Openthebooks — 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 Nevada state employee salary records by job title, department, employer, year, or name to find compensation information across the state workforce. Quickly lookup and compare salaries for specific roles or departments within Nevada's public sector.

**Category:** Government & Public Data | **Website:** [www.openthebooks.com/nevada-state-employees/](https://www.openthebooks.com/nevada-state-employees/) | **Docs:** [parse.bot/marketplace/f056a639-27db-4077-ad9c-832b3fa4328f/openthebooks-com-api](https://parse.bot/marketplace/f056a639-27db-4077-ad9c-832b3fa4328f/openthebooks-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-openthebooks-com-api-f056a639/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_salaries_by_title

Search Nevada state employee salary records by title/department keyword. The title filter is applied client-side (case-insensitive substring match) against server-paginated results sorted by annual wages descending. Each page contains up to 100 upstream records; matches_on_page reports how many matched the title filter. Use employer and year filters to narrow the server-side result set before title filtering. Results are auto-iterated across upstream pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `employer` | string | No | Employer name for server-side filtering. Must match a value from the site's employer dropdown (e.g. 'University of Nevada, Reno', 'University of Nevada, Las Vegas'). |
| `name` | string | No | Employee last name (optionally followed by first name, no comma) for server-side filtering. |
| `page` | integer | No | Upstream page number (1-based). Each page has up to 100 upstream records, of which zero or more may match the title filter. |
| `title` | string | Yes | Keyword to match in the employee title field (case-insensitive substring). Titles typically contain academic department names (e.g. 'economics', 'nursing', 'computer science'). |
| `year` | string | No | Year to filter by (e.g. '2024'). Omit or leave empty for all years. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-openthebooks-com-api-f056a639/search_salaries_by_title \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"employer":"<string>","name":"<string>","page":"<integer>","title":"<string>","year":"<string>"}'
```
