Live
list_topic_articles
news.un.orgReturns 10 paginated UN News articles for a topic from https://news.un.org with titles, URLs, summaries, dates, regions, topics, content types, and image metadata.
Parameters3
Runs5
Updated1d ago
Operational5 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_topic_articles?
Returns 10 paginated UN News articles for a topic from https://news.un.org with titles, URLs, summaries, dates, regions, topics, content types, and image metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass topic_slug, page, language and get the result back without maintaining a scraper.
Response
{
"page": 0,
"topic": "<string>",
"articles": [
{}
],
"language": "<string>",
"page_size": 0,
"source_url": "<string>",
"topic_slug": "<string>",
"article_count": 0,
"has_next_page": true,
"last_available_page": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/110f0453-8082-495a-b1aa-5e5705577347/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "110f0453-8082-495a-b1aa-5e5705577347",
"variables": {
"topic_slug": "peace-and-security",
"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="110f0453-8082-495a-b1aa-5e5705577347") — the "list_topic_articles" function, which returns 10 paginated UN News articles for a topic from https://news.un.org with titles, URLs, summaries, dates, regions, topics, content types, and image metadata.. It takes topic_slug (str), page (int), language (str). Return the result as structured JSON.