Live
get_company_profile
levels.fyiReturns a company profile from https://levels.fyi with full metadata, compensation overview, related companies, and available job families with role and level breakdowns.
Parameters1
Runs5
Updated1d ago
Operational5 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 get_company_profile?
Returns a company profile from https://levels.fyi with full metadata, compensation overview, related companies, and available job families with role and level breakdowns. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass company_slug and get the result back without maintaining a scraper.
Response
{
"company": {},
"source_url": "<string>",
"overview_summary": {},
"related_companies": [
{}
],
"available_job_families": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/90d125f0-2d3f-463e-aef6-145c384bda9c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "90d125f0-2d3f-463e-aef6-145c384bda9c",
"variables": {
"company_slug": "google"
}
}'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="90d125f0-2d3f-463e-aef6-145c384bda9c") — the "get_company_profile" function, which returns a company profile from https://levels.fyi with full metadata, compensation overview, related companies, and available job families with role and level breakdowns.. It takes company_slug (str). Return the result as structured JSON.