Marketplace
No threads yet
Live

get_ccass_shareholdings

www3.hkexnews.hk

Returns all disclosed CCASS participant shareholdings and HKEX aggregate participant totals for a Hong Kong stock and date from https://www3.hkexnews.hk. Records are sorted by shareholding quantity descending, with HKEX's prior-business-day fallback.

Parameters2
Runs10
Updated10d ago
Degraded10 runs · 90% 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_ccass_shareholdings?

Returns all disclosed CCASS participant shareholdings and HKEX aggregate participant totals for a Hong Kong stock and date from https://www3.hkexnews.hk. Records are sorted by shareholding quantity descending, with HKEX's prior-business-day fallback. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass stock_code, shareholding_date and get the result back without maintaining a scraper.

Response

{
  "summary": [
    {
      "participant_category": "<string>",
      "shareholding_quantity": 0,
      "number_of_participants": 0,
      "issued_shares_percentage": "<string>"
    }
  ],
  "stock_code": "<string>",
  "stock_name": "<string>",
  "participants": [
    {
      "address": "<string>",
      "participant_id": "<string>",
      "participant_name": "<string>",
      "shareholding_quantity": 0,
      "issued_shares_percentage": "<string>"
    }
  ],
  "shareholding_date": "<string>",
  "total_issued_shares_warrants_units": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/59b9a4e2-eb61-4f67-b2ad-78c8a352d9f1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "59b9a4e2-eb61-4f67-b2ad-78c8a352d9f1",
    "variables": {
        "stock_code": "00005",
        "shareholding_date": ""
    }
}'

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="59b9a4e2-eb61-4f67-b2ad-78c8a352d9f1") — the "get_ccass_shareholdings" function, which returns all disclosed CCASS participant shareholdings and HKEX aggregate participant totals for a Hong Kong stock and date from https://www3.hkexnews.hk. Records are sorted by shareholding quantity descending, with HKEX's prior-business-day fallback..

It takes stock_code (str), shareholding_date (str). Return the result as structured JSON.