Marketplace
No threads yet
Live

list_region_articles

news.un.org

Returns 10 paginated articles for a geographic region from https://news.un.org with titles, URLs, summaries, dates, topics, regions, content types and image metadata.

Parameters3
Runs4
Updated1d ago
Operational4 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_region_articles?

Returns 10 paginated articles for a geographic region from https://news.un.org with titles, URLs, 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 region_slug, page, language and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "region": "<string>",
  "articles": [
    {}
  ],
  "language": "<string>",
  "page_size": 0,
  "source_url": "<string>",
  "region_slug": "<string>",
  "article_count": 0,
  "has_next_page": true,
  "last_available_page": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/551d6acc-c791-48ce-b0e1-38995dfe14cd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "551d6acc-c791-48ce-b0e1-38995dfe14cd",
    "variables": {
        "region_slug": "africa",
        "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="551d6acc-c791-48ce-b0e1-38995dfe14cd") — the "list_region_articles" function, which returns 10 paginated articles for a geographic region from https://news.un.org with titles, URLs, summaries, dates, topics, regions, content types and image metadata..

It takes region_slug (str), page (int), language (str). Return the result as structured JSON.