Marketplace
No threads yet
Live

get_trending_startups_hiring

wellfound.com

Fetches the curated startups currently featured as hiring on the Wellfound jobs homepage at https://wellfound.com. Returns each startup's non-empty company fields and active job count metadata when provided by Wellfound.

Parameters1
Runs9
Updated8d ago
Operational9 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_trending_startups_hiring?

Fetches the curated startups currently featured as hiring on the Wellfound jobs homepage at https://wellfound.com. Returns each startup's non-empty company fields and active job count metadata when provided by Wellfound. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.

Response

{
  "status": "<string>",
  "startups": [
    {}
  ],
  "source_url": "<string>",
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/62dc6caf-1ac9-45be-bf02-8d1c0305b34e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "62dc6caf-1ac9-45be-bf02-8d1c0305b34e",
    "variables": {
        "limit": 10
    }
}'

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="62dc6caf-1ac9-45be-bf02-8d1c0305b34e") — the "get_trending_startups_hiring" function, which fetches the curated startups currently featured as hiring on the Wellfound jobs homepage at https://wellfound.com. Returns each startup's non-empty company fields and active job count metadata when provided by Wellfound..

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