get_trigger_info
download.comRetrieves download details from a software trigger page on https://download.com. Attempts to extract a direct download URL, and if unavailable returns the trigger URL with an explanation of the JavaScript/browser download flow.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_trigger_info?
Retrieves download details from a software trigger page on https://download.com. Attempts to extract a direct download URL, and if unavailable returns the trigger URL with an explanation of the JavaScript/browser download flow. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass trigger_page_url, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"message": "<string>",
"checked_urls": [
"<string>"
],
"product_name": "<string>",
"category_slug": "<string>",
"platform_slug": "<string>",
"visit_site_url": "<string>",
"download_status": "<string>",
"download_now_url": "<string>",
"subcategory_slug": "<string>",
"trigger_page_url": "<string>",
"direct_download_url": "<string>",
"resolved_trigger_url": "<string>",
"relaunch_download_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/e5d86337-a704-4151-b56a-c3fe832cb06e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e5d86337-a704-4151-b56a-c3fe832cb06e",
"variables": {
"trigger_page_url": "https://download.cnet.com/download/vlc-media-player-32-bit/3000-13632_4-10267151.html",
"timeout_seconds": 25
}
}'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="e5d86337-a704-4151-b56a-c3fe832cb06e") — the "get_trigger_info" function, which retrieves download details from a software trigger page on https://download.com. Attempts to extract a direct download URL, and if unavailable returns the trigger URL with an explanation of the JavaScript/browser download flow.. It takes trigger_page_url (str), timeout_seconds (int). Return the result as structured JSON.