search_surf_news
canaldosurf.comSearches and lists surf news articles from https://canaldosurf.com with optional text, category, and pagination filters. Returns date-descending article records plus total article and page counts.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_surf_news?
Searches and lists surf news articles from https://canaldosurf.com with optional text, category, and pagination filters. Returns date-descending article records plus total article and page counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, category, page, per_page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"articles": [
{}
],
"category": "<string>",
"per_page": 0,
"total_pages": 0,
"total_articles": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/c469f24e-7499-4514-8a4c-09406e79aea8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c469f24e-7499-4514-8a4c-09406e79aea8",
"variables": {
"query": "",
"category": "",
"page": 1,
"per_page": 10
}
}'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="c469f24e-7499-4514-8a4c-09406e79aea8") — the "search_surf_news" function, which searches and lists surf news articles from https://canaldosurf.com with optional text, category, and pagination filters. Returns date-descending article records plus total article and page counts.. It takes query (str), category (str), page (int), per_page (int). Return the result as structured JSON.