Live
list_h1b_salary_records
levels.fyiReturns paginated H-1B visa salary records from https://levels.fyi for a selected year, sorted by date descending with full record and page metadata.
Parameters2
Runs4
Updated1d ago
Operational4 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_h1b_salary_records?
Returns paginated H-1B visa salary records from https://levels.fyi for a selected year, sorted by date descending with full record and page metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"year": 0,
"records": [
{}
],
"pageSize": 0,
"totalPages": 0,
"totalRecords": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/4e32b882-1d90-43e0-b9db-4330e65c0376/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4e32b882-1d90-43e0-b9db-4330e65c0376",
"variables": {
"year": 2026,
"page": 1
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="4e32b882-1d90-43e0-b9db-4330e65c0376") — the "list_h1b_salary_records" function, which returns paginated H-1B visa salary records from https://levels.fyi for a selected year, sorted by date descending with full record and page metadata.. It takes year (int), page (int). Return the result as structured JSON.