get_article_details
apnews.comRetrieves a complete Associated Press article from https://apnews.com, including its headline, authors, publication and update dates, summary, keywords, lead image, and full article body.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_article_details?
Retrieves a complete Associated Press article from https://apnews.com, including its headline, authors, publication and update dates, summary, keywords, lead image, and full article body. 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
{
"url": "<string>",
"title": "<string>",
"authors": [
"<string>"
],
"content": "<string>",
"keywords": [
"<string>"
],
"image_url": "<string>",
"description": "<string>",
"updated_date": "<string>",
"published_date": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/e8bd57b8-ab0d-4416-8e66-0ed04586a3db/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e8bd57b8-ab0d-4416-8e66-0ed04586a3db",
"variables": {
"article_url": "https://apnews.com/article/climate-marathons-running-heat-3f162360487d57bf55ba25de24320a46"
}
}'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="e8bd57b8-ab0d-4416-8e66-0ed04586a3db") — the "get_article_details" function, which retrieves a complete Associated Press article from https://apnews.com, including its headline, authors, publication and update dates, summary, keywords, lead image, and full article body.. It takes article_url (str). Return the result as structured JSON.