# Bloomberg Financial News AI Sentiment Analysis

**Use case:** 

Extract sentiment insights from Bloomberg articles. Receive full text, metadata, and summaries of key financial news updates.

## Input

```json
{
  "articleUrls": [
    "https://www.bloomberg.com/news/articles/2026-03-03/what-to-watch-as-china-s-leaders-hash-out-plan-for-economic-path",
    "https://www.bloomberg.com/news/articles/2026-02-06/how-much-is-big-tech-spending-on-ai-computing-a-staggering-650-billion-in-2026"
  ],
  "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.