get_job_listing_details
wellfound.comRetrieves a specific Wellfound job listing with its complete structured JSON-LD record, including description, salary, location, and hiring organization from https://wellfound.com. Reports stale_input when the listing is missing or removed.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_job_listing_details?
Retrieves a specific Wellfound job listing with its complete structured JSON-LD record, including description, salary, location, and hiring organization from https://wellfound.com. Reports stale_input when the listing is missing or removed. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass job_url and get the result back without maintaining a scraper.
Response
{
"data": {},
"status": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/b44a85e0-f5ff-422a-b553-5f8272098988/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b44a85e0-f5ff-422a-b553-5f8272098988",
"variables": {
"job_url": "DEFAULT_JOB_URL"
}
}'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="b44a85e0-f5ff-422a-b553-5f8272098988") — the "get_job_listing_details" function, which retrieves a specific Wellfound job listing with its complete structured JSON-LD record, including description, salary, location, and hiring organization from https://wellfound.com. Reports stale_input when the listing is missing or removed.. It takes job_url (str). Return the result as structured JSON.