Live
fetch_rss_feed
news.un.orgFetches a language-specific all-news RSS feed from https://news.un.org and returns every current item with feed metadata, descriptions, dates, categories, media and source fields.
Parameters1
Runs4
Updated1d ago
Operational4 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is fetch_rss_feed?
Fetches a language-specific all-news RSS feed from https://news.un.org and returns every current item with feed metadata, descriptions, dates, categories, media and source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass language and get the result back without maintaining a scraper.
Response
{
"link": "<string>",
"image": {},
"items": [
{}
],
"title": "<string>",
"feed_url": "<string>",
"language": "<string>",
"generator": "<string>",
"item_count": 0,
"description": "<string>",
"last_build_date": "<string>",
"publication_date": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/2559ba2f-8601-4b13-9215-2ab72475b670/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2559ba2f-8601-4b13-9215-2ab72475b670",
"variables": {
"language": "en"
}
}'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="2559ba2f-8601-4b13-9215-2ab72475b670") — the "fetch_rss_feed" function, which fetches a language-specific all-news RSS feed from https://news.un.org and returns every current item with feed metadata, descriptions, dates, categories, media and source fields.. It takes language (str). Return the result as structured JSON.