get_articles_by_category
agweb.comReturns paginated AgWeb article listings filtered by an agricultural category from https://agweb.com. Each result includes the available title, URL, summary, publication date, author, category, and media details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_articles_by_category?
Returns paginated AgWeb article listings filtered by an agricultural category from https://agweb.com. Each result includes the available title, URL, summary, publication date, author, category, and media details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"source": "<string>",
"articles": [
{}
],
"category": "<string>",
"has_more": true,
"next_page": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ef07f177-35d8-40d0-8a2a-e18c1030bf65/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ef07f177-35d8-40d0-8a2a-e18c1030bf65",
"variables": {
"category": "crops",
"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="ef07f177-35d8-40d0-8a2a-e18c1030bf65") — the "get_articles_by_category" function, which returns paginated AgWeb article listings filtered by an agricultural category from https://agweb.com. Each result includes the available title, URL, summary, publication date, author, category, and media details.. It takes category (str), page (int). Return the result as structured JSON.