# TradingView Reuters News Extractor Example

**Use case:** 

Extract public Reuters headline metadata from TradingView with exact timestamps, related market symbols, article links, and provider context.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.tradingview.com/news/top-providers/reuters/"
    }
  ],
  "markets": [],
  "providers": [],
  "symbols": [],
  "maxItems": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "publishedAt": {
    "label": "Published at",
    "format": "date"
  },
  "title": {
    "label": "Headline"
  },
  "provider": {
    "label": "Provider"
  },
  "primarySymbol": {
    "label": "Primary symbol"
  },
  "symbols": {
    "label": "Related symbols"
  },
  "articleUrl": {
    "label": "Article",
    "format": "link"
  },
  "relativeAge": {
    "label": "Age"
  },
  "feedType": {
    "label": "Feed context"
  },
  "paywalled": {
    "label": "Paywalled"
  },
  "urgency": {
    "label": "Urgency"
  },
  "permission": {
    "label": "Permission"
  },
  "providerId": {
    "label": "Provider ID"
  },
  "symbolLogoUrl": {
    "label": "Symbol logo",
    "format": "link"
  },
  "feedUrl": {
    "label": "Feed URL",
    "format": "link"
  },
  "marketFilter": {
    "label": "Market filter"
  },
  "providerFilter": {
    "label": "Provider filter"
  },
  "symbolFilter": {
    "label": "Symbol filter"
  },
  "newsId": {
    "label": "News ID"
  },
  "publishedUnix": {
    "label": "Published Unix"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [TradingView News Scraper](https://apify.com/automation-lab/tradingview-news-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/tradingview-news-scraper) to learn more, explore other use cases, and run it yourself.