Marketplace
No threads yet
Live

search_job_listings

wellfound.com

Searches Wellfound startup jobs by role, location, and page. Returns detailed listings with compensation, remote configuration, and associated startup data from https://wellfound.com.

Parameters3
Runs10
Updated10d ago

Playground

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

What is search_job_listings?

Searches Wellfound startup jobs by role, location, and page. Returns detailed listings with compensation, remote configuration, and associated startup data from https://wellfound.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass role, location, page and get the result back without maintaining a scraper.

Response

{
  "query": {},
  "status": "<string>",
  "results": [
    {}
  ],
  "pagination": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/01cc8ca2-d015-4ddb-9d7f-e36512f15212/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "01cc8ca2-d015-4ddb-9d7f-e36512f15212",
    "variables": {
        "role": "software engineer",
        "location": "san francisco",
        "page": 1
    }
}'

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="01cc8ca2-d015-4ddb-9d7f-e36512f15212") — the "search_job_listings" function, which searches Wellfound startup jobs by role, location, and page. Returns detailed listings with compensation, remote configuration, and associated startup data from https://wellfound.com..

It takes role (str), location (str), page (int). Return the result as structured JSON.