Marketplace
No threads yet
Live

get_announcement_details

boslive.icai.org

Fetches a specific announcement by ID from https://boslive.icai.org. Returns announcement title, publication date, section, page URL, and embedded/direct PDF links when present.

Parameters1
Runs9
Updated8d ago
Degraded9 runs · 88.8% 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_announcement_details?

Fetches a specific announcement by ID from https://boslive.icai.org. Returns announcement title, publication date, section, page URL, and embedded/direct PDF links when present. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass announcement_id and get the result back without maintaining a scraper.

Response

{
  "announcement": {
    "id": 0,
    "title": "<string>",
    "section": "<string>",
    "page_url": "<string>",
    "pdf_urls": [
      "<string>"
    ],
    "embedded_pdf_url": "<string>",
    "publication_date": "<string>"
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/1d23d84e-d0be-4b6a-920d-3b146c47e63b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1d23d84e-d0be-4b6a-920d-3b146c47e63b",
    "variables": {
        "announcement_id": 601
    }
}'

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="1d23d84e-d0be-4b6a-920d-3b146c47e63b") — the "get_announcement_details" function, which fetches a specific announcement by ID from https://boslive.icai.org. Returns announcement title, publication date, section, page URL, and embedded/direct PDF links when present..

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