Marketplace
No threads yet
Live

get_stock_channel_volume_metrics

ceo.ca

Fetches quote-level volume metrics for a CEO.ca stock channel from https://ceo.ca, including current volume and average daily volume. Returns an upstream_error when the channel has no quote data (for example, non-company topics or invalid tickers).

Parameters1
Runs9
Updated8d 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 get_stock_channel_volume_metrics?

Fetches quote-level volume metrics for a CEO.ca stock channel from https://ceo.ca, including current volume and average daily volume. Returns an upstream_error when the channel has no quote data (for example, non-company topics or invalid tickers). It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass channel and get the result back without maintaining a scraper.

Response

{
  "quote": {},
  "symbol": "<string>",
  "channel": "<string>",
  "channel_type": "<string>",
  "dollar_volume": 0,
  "average_volume": 0,
  "current_volume": 0,
  "upstream_error": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/781321f8-39f4-461d-b3c9-24136ab10b69/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "781321f8-39f4-461d-b3c9-24136ab10b69",
    "variables": {
        "channel": "big"
    }
}'

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="781321f8-39f4-461d-b3c9-24136ab10b69") — the "get_stock_channel_volume_metrics" function, which fetches quote-level volume metrics for a CEO.ca stock channel from https://ceo.ca, including current volume and average daily volume. Returns an upstream_error when the channel has no quote data (for example, non-company topics or invalid tickers)..

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