Marketplace
No threads yet
Live

get_job_details

hubmub.com

Returns full details for one https://www.hubmub.com job ID, including description, company profile, dates, location, type, level, skills, industries and categories.

Parameters1
Runs4
Updated1d ago
Operational4 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 get_job_details?

Returns full details for one https://www.hubmub.com job ID, including description, company profile, dates, location, type, level, skills, industries and categories. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass job_id and get the result back without maintaining a scraper.

Response

{
  "job": {
    "slug": "<string>",
    "title": "<string>",
    "job_id": 0,
    "source": "<string>",
    "company": {
      "name": "<string>",
      "slug": "<string>",
      "logo_url": "<string>",
      "company_id": 0,
      "profile_url": "<string>"
    },
    "country": "<string>",
    "location": "<string>",
    "categories": [
      "<string>"
    ],
    "industries": [
      "<string>"
    ],
    "key_skills": [
      "<string>"
    ],
    "description": "<string>",
    "posted_date": "<string>",
    "employment_type": "<string>",
    "seniority_level": "<string>",
    "description_links": [
      {
        "url": "<string>",
        "label": "<string>"
      }
    ]
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2ee3c774-5312-4cd2-b4a8-cbbc5ec58bbc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2ee3c774-5312-4cd2-b4a8-cbbc5ec58bbc",
    "variables": {
        "job_id": 1040120
    }
}'

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="2ee3c774-5312-4cd2-b4a8-cbbc5ec58bbc") — the "get_job_details" function, which returns full details for one https://www.hubmub.com job ID, including description, company profile, dates, location, type, level, skills, industries and categories..

It takes job_id (int). Return the result as structured JSON.