# Export Stocktwits messages for BTC, ETH, and COIN

**Use case:** 

Scrape public Stocktwits posts around crypto tickers and crypto-adjacent equities for research or alerting workflows.

## Input

```json
{
  "symbols": [
    "BTC.X",
    "ETH.X",
    "COIN",
    "MSTR"
  ],
  "maxMessagesPerSymbol": 20,
  "includeRaw": false,
  "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.