get_latest_news
agweb.comReturns the latest general news listings across all categories from https://agweb.com, including each article’s title, URL, summary, publication date, author, category, and available media details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_latest_news?
Returns the latest general news listings across all categories from https://agweb.com, including each article’s title, URL, summary, publication date, author, category, and available media details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"source": "<string>",
"articles": [
{}
],
"has_more": true,
"next_page": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/566383c6-7c6e-4bed-b099-d03c86b3f022/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "566383c6-7c6e-4bed-b099-d03c86b3f022",
"variables": {
"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="566383c6-7c6e-4bed-b099-d03c86b3f022") — the "get_latest_news" function, which returns the latest general news listings across all categories from https://agweb.com, including each article’s title, URL, summary, publication date, author, category, and available media details.. It takes page (int). Return the result as structured JSON.