search_jobs
hubmub.comSearches https://www.hubmub.com jobs with optional terms, job type, category, industry and location filters, returning recent summaries across automatically iterated pages.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_jobs?
Searches https://www.hubmub.com jobs with optional terms, job type, category, industry and location filters, returning recent summaries across automatically iterated pages. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass search_terms, job_type, category, industry, location, start_page, max_pages and get the result back without maintaining a scraper.
Response
{
"jobs": [
{
"slug": "<string>",
"title": "<string>",
"job_id": 0,
"country": "<string>",
"industry": "<string>",
"detail_url": "<string>",
"company_name": "<string>",
"country_flag": "<string>",
"employment_type": "<string>",
"posted_relative": "<string>",
"seniority_level": "<string>",
"company_logo_url": "<string>",
"special_features": [
"<string>"
]
}
],
"source": "<string>",
"filters": {
"job_types": [
"<string>"
],
"locations": [
"<string>"
],
"categories": [
"<string>"
],
"industries": [
"<string>"
],
"search_terms": "<string>"
},
"has_more": true,
"page_size": 0,
"ordered_by": "<string>",
"start_page": 0,
"total_pages": 0,
"pages_fetched": 0,
"total_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ad3f641b-e58f-4a3d-a8d6-701630946436/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ad3f641b-e58f-4a3d-a8d6-701630946436",
"variables": {
"search_terms": "",
"job_type": "",
"category": "",
"industry": "",
"location": "",
"start_page": 1,
"max_pages": 2
}
}'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="ad3f641b-e58f-4a3d-a8d6-701630946436") — the "search_jobs" function, which searches https://www.hubmub.com jobs with optional terms, job type, category, industry and location filters, returning recent summaries across automatically iterated pages.. It takes search_terms (str), job_type (str), category (str), industry (str), location (str), start_page (int), max_pages (int). Return the result as structured JSON.