# FT Competitive Intelligence Data Extraction

**Use case:** 

Monitor and retrieve competitive intelligence from Financial Times articles. Get structured data and full-text insights for market analysis.

## Input

```json
{
  "articleUrls": [
    "https://www.ft.com/content/0b7b81e2-6b0c-4e3c-81cb-0d6f3fd60682",
    "https://www.ft.com/content/7c6ee5e8-c379-40c0-9d9f-d1ecc7b69261"
  ],
  "autoArchive": true,
  "maxRetries": 3,
  "requestIntervalMs": 3000,
  "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.