search_articles
news.un.orgSearches https://news.un.org for a single-word keyword and returns 10 paginated articles with titles, URLs, complete summaries, dates, topics, regions, content types, and image metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_articles?
Searches https://news.un.org for a single-word keyword and returns 10 paginated articles with titles, URLs, complete summaries, dates, topics, regions, 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 query, page, language and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"articles": [
{}
],
"language": "<string>",
"page_size": 0,
"source_url": "<string>",
"article_count": 0,
"has_next_page": true,
"total_results": 0,
"displaying_end": 0,
"displaying_start": 0,
"last_available_page": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/df90739a-38d1-4a0c-8ab9-b694ebcacf07/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "df90739a-38d1-4a0c-8ab9-b694ebcacf07",
"variables": {
"query": "climate",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="df90739a-38d1-4a0c-8ab9-b694ebcacf07") — the "search_articles" function, which searches https://news.un.org for a single-word keyword and returns 10 paginated articles with titles, URLs, complete summaries, dates, topics, regions, content types, and image metadata.. It takes query (str), page (int), language (str). Return the result as structured JSON.