extract_page_pdf_links
boslive.icai.orgExtracts direct PDF links from a specific page on https://boslive.icai.org, including both clickable PDF hyperlinks and PDFs embedded in iframe, embed, or object elements. Useful for announcement detail pages and other ICAI Board of Studies Knowledge Portal pages.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is extract_page_pdf_links?
Extracts direct PDF links from a specific page on https://boslive.icai.org, including both clickable PDF hyperlinks and PDFs embedded in iframe, embed, or object elements. Useful for announcement detail pages and other ICAI Board of Studies Knowledge Portal pages. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page_url and get the result back without maintaining a scraper.
Response
{
"page_url": "<string>",
"pdf_links": [
{
"url": "<string>",
"attribute": "<string>",
"link_text": "<string>",
"source_tag": "<string>",
"source_type": "<string>"
}
],
"page_title": "<string>",
"total_pdf_links": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/70c27030-13fd-4b99-86bb-ab505915b2e2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "70c27030-13fd-4b99-86bb-ab505915b2e2",
"variables": {
"page_url": "https://boslive.icai.org/announcement_details.php?id=592"
}
}'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="70c27030-13fd-4b99-86bb-ab505915b2e2") — the "extract_page_pdf_links" function, which extracts direct PDF links from a specific page on https://boslive.icai.org, including both clickable PDF hyperlinks and PDFs embedded in iframe, embed, or object elements. Useful for announcement detail pages and other ICAI Board of Studies Knowledge Portal pages.. It takes page_url (str). Return the result as structured JSON.