get_company_salary_details
levels.fyiReturns detailed company and job-family salary data from https://levels.fyi, with levels, individual samples, compensation percentiles, median details, and optional location scope.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_company_salary_details?
Returns detailed company and job-family salary data from https://levels.fyi, with levels, individual samples, compensation percentiles, median details, and optional location scope. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass company_slug, job_family_slug, location_slug and get the result back without maintaining a scraper.
Response
{
"source_url": "<string>",
"salary_data": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/32970c56-d3ca-4ee0-b013-dc439f3f53f6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "32970c56-d3ca-4ee0-b013-dc439f3f53f6",
"variables": {
"company_slug": "google",
"job_family_slug": "software-engineer",
"location_slug": ""
}
}'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="32970c56-d3ca-4ee0-b013-dc439f3f53f6") — the "get_company_salary_details" function, which returns detailed company and job-family salary data from https://levels.fyi, with levels, individual samples, compensation percentiles, median details, and optional location scope.. It takes company_slug (str), job_family_slug (str), location_slug (str). Return the result as structured JSON.