get_trending_stocks_snapshot
ceo.caFetches trending stocks, featured channels, and market category channel lists from https://ceo.ca. Returns paginated trending records with pagination metadata plus category snapshots such as commodities and crypto.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_trending_stocks_snapshot?
Fetches trending stocks, featured channels, and market category channel lists from https://ceo.ca. Returns paginated trending records with pagination metadata plus category snapshots such as commodities and crypto. 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
{
"pagination": {
"page": 0,
"limit": 0,
"next_page": 0,
"total_pages": 0,
"has_next_page": true,
"previous_page": 0,
"total_records": 0,
"has_previous_page": true
},
"trending_stocks": [
{}
],
"featured_channels": [
{}
],
"channel_categories": [
{
"id": "<string>",
"channels": [
{}
]
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/06baf7a6-5a9c-4c33-8889-3d7eeeca0de9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "06baf7a6-5a9c-4c33-8889-3d7eeeca0de9",
"variables": {
"limit": 20,
"page": 1
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="06baf7a6-5a9c-4c33-8889-3d7eeeca0de9") — the "get_trending_stocks_snapshot" function, which fetches trending stocks, featured channels, and market category channel lists from https://ceo.ca. Returns paginated trending records with pagination metadata plus category snapshots such as commodities and crypto.. It takes limit (int), page (int). Return the result as structured JSON.