Marketplace
No threads yet
Live

search_jobs

nvidia.wd5.myworkdayjobs.com

Searches current NVIDIA openings on https://nvidia.wd5.myworkdayjobs.com by keyword, location, department, work type, and time type. Returns 10 enriched job summaries per page with identifiers and pagination offsets.

Parameters6
Runs10
Updated10d ago
Operational10 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 search_jobs?

Searches current NVIDIA openings on https://nvidia.wd5.myworkdayjobs.com by keyword, location, department, work type, and time type. Returns 10 enriched job summaries per page with identifiers and pagination offsets. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, location, department, work_type, time_type, start_offset and get the result back without maintaining a scraper.

Response

{
  "jobs": [
    {
      "url": "<string>",
      "title": "<string>",
      "locations": [
        "<string>"
      ],
      "posted_on": "<string>",
      "time_type": "<string>",
      "work_type": "<string>",
      "department": "<string>",
      "position_id": 0,
      "bullet_fields": [
        "<string>"
      ],
      "external_path": "<string>",
      "job_posting_id": "<string>",
      "location_types": [
        "<string>"
      ],
      "locations_text": "<string>",
      "country_locations": [
        "<string>"
      ],
      "job_requisition_id": "<string>"
    }
  ],
  "total": 0,
  "page_size": 0,
  "start_offset": 0,
  "next_start_offset": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/62ad678e-728d-4d08-b774-d3e71b2789b0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "62ad678e-728d-4d08-b774-d3e71b2789b0",
    "variables": {
        "keyword": "software engineer",
        "location": "",
        "department": "",
        "work_type": "",
        "time_type": "",
        "start_offset": 0
    }
}'

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="62ad678e-728d-4d08-b774-d3e71b2789b0") — the "search_jobs" function, which searches current NVIDIA openings on https://nvidia.wd5.myworkdayjobs.com by keyword, location, department, work type, and time type. Returns 10 enriched job summaries per page with identifiers and pagination offsets..

It takes keyword (str), location (str), department (str), work_type (str), time_type (str), start_offset (int). Return the result as structured JSON.