search_nevada_salaries_by_title
openthebooks.comSearches Nevada state employee salary records by case-insensitive title keyword, with exact employer and year filters, and returns compensation records from https://www.openthebooks.com. It scans the site's upstream pages automatically and reports matches per page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_nevada_salaries_by_title?
Searches Nevada state employee salary records by case-insensitive title keyword, with exact employer and year filters, and returns compensation records from https://www.openthebooks.com. It scans the site's upstream pages automatically and reports matches per page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass title_keyword, employer, year, max_pages and get the result back without maintaining a scraper.
Response
{
"sort": "<string>",
"year": 0,
"pages": [
{
"page": 0,
"matches_on_page": 0,
"upstream_records": 0
}
],
"records": [
{
"name": "<string>",
"year": 0,
"title": "<string>",
"source": "<string>",
"employer": "<string>",
"annual_wages": "<string>"
}
],
"complete": true,
"employer": "<string>",
"page_size": 0,
"pages_scanned": 0,
"title_keyword": "<string>",
"total_matches": 0,
"upstream_records_scanned": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/61466605-22c1-4261-9624-9253eb6394f3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "61466605-22c1-4261-9624-9253eb6394f3",
"variables": {
"title_keyword": "education",
"employer": "State of Nevada Department of Education",
"year": 2024,
"max_pages": 100
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="61466605-22c1-4261-9624-9253eb6394f3") — the "search_nevada_salaries_by_title" function, which searches Nevada state employee salary records by case-insensitive title keyword, with exact employer and year filters, and returns compensation records from https://www.openthebooks.com. It scans the site's upstream pages automatically and reports matches per page.. It takes title_keyword (str), employer (str), year (int), max_pages (int). Return the result as structured JSON.