Marketplace
No threads yet
Live

list_job_families_and_titles

levels.fyi

Returns the full Levels.fyi job family and title directory from https://levels.fyi, including categories, aliases, icons, descriptions, focus tags, and nested job titles.

Parameters0
Runs5
Updated1d ago
Operational5 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_job_families_and_titles?

Returns the full Levels.fyi job family and title directory from https://levels.fyi, including categories, aliases, icons, descriptions, focus tags, and nested job titles. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "job_families": [
    {
      "id": 0,
      "icon": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "aliases": [
        "<string>"
      ],
      "category": "<string>",
      "focusTags": [
        {
          "id": 0,
          "name": "<string>",
          "slug": "<string>",
          "jobFamily": "<string>",
          "jobRoleId": 0,
          "jobTitles": [
            {
              "id": 0,
              "name": "<string>",
              "slug": "<string>",
              "aliases": [
                "<string>"
              ],
              "jobRoleId": 0,
              "focusTagId": 0,
              "description": "<string>"
            }
          ],
          "description": "<string>",
          "displayValue": "<string>"
        }
      ],
      "jobTitles": [
        {
          "id": 0,
          "name": "<string>",
          "slug": "<string>",
          "aliases": [
            "<string>"
          ],
          "jobRoleId": 0,
          "focusTagId": 0,
          "description": "<string>"
        }
      ],
      "description": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/aeb8e3b0-a8cf-4512-acc1-e10d3fc7d42b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "aeb8e3b0-a8cf-4512-acc1-e10d3fc7d42b",
    "variables": {}
}'

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="aeb8e3b0-a8cf-4512-acc1-e10d3fc7d42b") — the "list_job_families_and_titles" function, which returns the full Levels.fyi job family and title directory from https://levels.fyi, including categories, aliases, icons, descriptions, focus tags, and nested job titles..

It takes no parameters. Return the result as structured JSON.