Marketplace
No threads yet
Live

search_articles

agweb.com

Searches https://agweb.com for keyword-matched recent and archival articles, returning titles, URLs, summaries, categories, dates, authors, sponsorship, media, and pagination.

Parameters3
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_articles?

Searches https://agweb.com for keyword-matched recent and archival articles, returning titles, URLs, summaries, categories, dates, authors, sponsorship, media, and pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, limit and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "results": [
    {}
  ],
  "total_count": 0,
  "total_pages": 0,
  "result_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/109cc288-78d3-4532-83e4-9e51e9ab4081/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "109cc288-78d3-4532-83e4-9e51e9ab4081",
    "variables": {
        "query": "corn",
        "page": 1,
        "limit": 10
    }
}'

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="109cc288-78d3-4532-83e4-9e51e9ab4081") — the "search_articles" function, which searches https://agweb.com for keyword-matched recent and archival articles, returning titles, URLs, summaries, categories, dates, authors, sponsorship, media, and pagination..

It takes query (str), page (int), limit (int). Return the result as structured JSON.