# European Multilingual News Aggregator

**Use case:** 

Extract structured insights from European news articles. Retrieve high-fidelity, normalized content and metadata for informed analysis.

## Input

```json
{
  "articleUrls": [
    "https://www.lemonde.fr/en/international/article/2026/03/07/trump-and-zelensky-meet-at-the-vatican_6738777_4.html",
    "https://www.spiegel.de/ausland/us-botschaft-in-oslo-explosion-nahe-der-vertretung-des-landes-in-norwegen-a-6058c36c-a56c-4fec-ab00-84c5d388d871",
    "https://www.lemonde.fr/sport/article/2026/03/07/ecosse-france-les-bleus-passent-a-cote-de-leur-match-a-murrayfield-et-se-mettent-en-difficulte-dans-le-tournoi-des-six-nations_6669932_3242.html"
  ],
  "autoArchive": true,
  "maxRetries": 3,
  "requestIntervalMs": 2000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "byline": {
    "label": "Author",
    "format": "string"
  },
  "publishedDate": {
    "label": "Published",
    "format": "string"
  },
  "excerpt": {
    "label": "Excerpt",
    "format": "string"
  },
  "text": {
    "label": "Full Text",
    "format": "string"
  },
  "markdown": {
    "label": "Markdown",
    "format": "string"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "elapsedMs": {
    "label": "Time (ms)",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Universal News Article Intelligence Agent](https://apify.com/workhard3000/news-intelligence-rag-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/workhard3000/news-intelligence-rag-extractor) to learn more, explore other use cases, and run it yourself.