Marketplace
No threads yet
Live

list_volume_anomalies

ceo.ca

Returns the company list from https://ceo.ca sorted by volume anomaly, with quote metrics, freshness metadata, and paginated continuation details.

Parameters2
Runs9
Updated3d 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_volume_anomalies?

Returns the company list from https://ceo.ca sorted by volume anomaly, with quote metrics, freshness metadata, and paginated continuation details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "count": 0,
  "limit": 0,
  "has_more": true,
  "companies": [
    {
      "halted": true,
      "ticker": "<string>",
      "channel": "<string>",
      "day_low": 0,
      "day_high": 0,
      "exchange": "<string>",
      "direction": "<string>",
      "issue_type": "<string>",
      "last_price": 0,
      "market_cap": 0,
      "stock_type": "<string>",
      "record_type": "<string>",
      "company_name": "<string>",
      "float_shares": 0,
      "price_change": 0,
      "volume_ratio": 0,
      "dollar_volume": 0,
      "average_volume": 0,
      "percent_change": 0,
      "quote_timestamp": 0,
      "event_timestamps": {},
      "shares_outstanding": 0,
      "previous_close_price": 0,
      "current_session_volume": 0
    }
  ],
  "next_page": 0,
  "fetched_at": "<string>",
  "total_available": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/339c6230-0984-4cac-9a95-b631cc35ef08/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "339c6230-0984-4cac-9a95-b631cc35ef08",
    "variables": {
        "limit": 25,
        "page": 1
    }
}'

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="339c6230-0984-4cac-9a95-b631cc35ef08") — the "list_volume_anomalies" function, which returns the company list from https://ceo.ca sorted by volume anomaly, with quote metrics, freshness metadata, and paginated continuation details..

It takes limit (int), page (int). Return the result as structured JSON.