# Collect raw Stocktwits message JSON for AAPL and TSLA

**Use case:** 

Run a small sample that includes the raw public Stocktwits payload alongside normalized fields for custom parsing and debugging.

## Input

```json
{
  "symbols": [
    "AAPL",
    "TSLA"
  ],
  "maxMessagesPerSymbol": 10,
  "includeRaw": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "messageId": {
    "label": "Message ID",
    "format": "number"
  },
  "body": {
    "label": "Message",
    "format": "text"
  },
  "createdAt": {
    "label": "Created at",
    "format": "date"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "sentiment": {
    "label": "Sentiment",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "replies": {
    "label": "Replies",
    "format": "number"
  },
  "mentionedSymbols": {
    "label": "Mentioned symbols",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Message URL",
    "format": "link"
  }
}
```

## About this Actor

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