Live
list_weekend_market_reports
agweb.comReturns the latest Weekend Market Report articles from https://agweb.com with market commentary summaries, publication details, authors, images and article links.
Parameters3
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_weekend_market_reports?
Returns the latest Weekend Market Report articles from https://agweb.com with market commentary summaries, publication details, authors, images and article links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, limit, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"count": 0,
"source": "<string>",
"articles": [
{
"title": "<string>",
"author": "<string>",
"category": "<string>",
"image_alt": "<string>",
"image_url": "<string>",
"author_url": "<string>",
"article_url": "<string>",
"description": "<string>",
"category_url": "<string>",
"published_at": "<string>"
}
],
"page_url": "<string>",
"next_page_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/fc25eed6-22a4-4cfc-a296-8f444431b9c7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "fc25eed6-22a4-4cfc-a296-8f444431b9c7",
"variables": {
"page": 1,
"limit": 20,
"timeout_seconds": 30
}
}'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="fc25eed6-22a4-4cfc-a296-8f444431b9c7") — the "list_weekend_market_reports" function, which returns the latest Weekend Market Report articles from https://agweb.com with market commentary summaries, publication details, authors, images and article links.. It takes page (int), limit (int), timeout_seconds (int). Return the result as structured JSON.