Live
list_editorial_stories
news.un.orgReturns paginated stories from In Focus, Interviews, Features and Photo Stories on https://news.un.org with all non-empty editorial and media metadata.
Parameters3
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 list_editorial_stories?
Returns paginated stories from In Focus, Interviews, Features and Photo Stories on https://news.un.org with all non-empty editorial and media metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass section, page, language and get the result back without maintaining a scraper.
Response
{
"page": 0,
"section": "<string>",
"stories": [
{}
],
"has_more": true,
"language": "<string>",
"source_url": "<string>",
"story_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/63db4baf-fb98-4adb-98f7-f3a45b384890/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "63db4baf-fb98-4adb-98f7-f3a45b384890",
"variables": {
"section": "features",
"page": 1,
"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="63db4baf-fb98-4adb-98f7-f3a45b384890") — the "list_editorial_stories" function, which returns paginated stories from In Focus, Interviews, Features and Photo Stories on https://news.un.org with all non-empty editorial and media metadata.. It takes section (str), page (int), language (str). Return the result as structured JSON.