Marketplace
No threads yet
Live

get_article_details

agweb.com

Returns full article body text and structured metadata from a specific https://agweb.com article URL, including title, dates, authors, description, images and tags.

Parameters1
Runs8
Updated3d ago
Degraded8 runs · 87.5% 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 get_article_details?

Returns full article body text and structured metadata from a specific https://agweb.com article URL, including title, dates, authors, description, images and tags. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass article_url and get the result back without maintaining a scraper.

Response

{
  "source": "<string>",
  "article": {
    "tags": [
      "<string>"
    ],
    "title": "<string>",
    "images": [
      {}
    ],
    "authors": [
      {}
    ],
    "section": "<string>",
    "metadata": {},
    "body_text": "<string>",
    "description": "<string>",
    "modified_at": "<string>",
    "published_at": "<string>",
    "canonical_url": "<string>",
    "publication_date": "<string>"
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/8b29d22d-f85e-44b9-9f9d-ed82b2aa95f5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "8b29d22d-f85e-44b9-9f9d-ed82b2aa95f5",
    "variables": {
        "article_url": "https://www.agweb.com/news/minnesota-and-iowa-add-more-uncertainty-2026-corn-yield-outlook"
    }
}'

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="8b29d22d-f85e-44b9-9f9d-ed82b2aa95f5") — the "get_article_details" function, which returns full article body text and structured metadata from a specific https://agweb.com article URL, including title, dates, authors, description, images and tags..

It takes article_url (str). Return the result as structured JSON.