Marketplace
No threads yet
Live

list_urd_filings

investors.capgemini.com

Returns the main filing and every related publication listed on a Universal Registration Document page from https://investors.capgemini.com, including dates, document types, download metadata, and view-online links.

Parameters1
Runs9
Updated10d 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 list_urd_filings?

Returns the main filing and every related publication listed on a Universal Registration Document page from https://investors.capgemini.com, including dates, document types, download metadata, and view-online links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass publication_url and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "filings": [
    {
      "title": "<string>",
      "file_size": "<string>",
      "description": "<string>",
      "file_format": "<string>",
      "download_url": "<string>",
      "relationship": "<string>",
      "document_type": "<string>",
      "view_online_url": "<string>",
      "publication_date": "<string>",
      "publication_time": "<string>",
      "availability_note": "<string>"
    }
  ],
  "source_url": "<string>",
  "publication_title": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/480fbede-5188-4c97-b585-e984936a9598/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "480fbede-5188-4c97-b585-e984936a9598",
    "variables": {
        "publication_url": "https://investors.capgemini.com/en/publication/2025-universal-registration-document/"
    }
}'

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="480fbede-5188-4c97-b585-e984936a9598") — the "list_urd_filings" function, which returns the main filing and every related publication listed on a Universal Registration Document page from https://investors.capgemini.com, including dates, document types, download metadata, and view-online links..

It takes publication_url (str). Return the result as structured JSON.