# Scrape Stock Market Sentiment ($Cashtags) on Twitter

**Use case:** 

Extract real-time tweets for any stock ticker (e.g. $AAPL), analyze bullish or bearish sentiment. Export structured data to build trading signals and trends.

## Input

```json
{
  "cashtag": "AAPL ",
  "sentimentAnalysis": false,
  "sortBy": "Latest",
  "maxItems": 10,
  "minRetweets": 0,
  "minLikes": 0,
  "minReplies": 0,
  "onlyVerifiedUsers": false,
  "onlyBuleVerifiedUsers": false
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "text"
  },
  "id": {
    "label": "ID",
    "format": "text"
  },
  "text": {
    "label": "TEXT",
    "format": "text"
  },
  "retweetCount": {
    "label": "Retweet Count",
    "format": "number"
  },
  "sentiment": {
    "label": "Sentiment",
    "format": "text"
  },
  "replyCount": {
    "label": "Reply Count",
    "format": "number"
  },
  "likeCount": {
    "label": "Like Count",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quote Count",
    "format": "number"
  },
  "createdAt": {
    "label": "Created At",
    "format": "date"
  },
  "bookmarkCount": {
    "label": "Bookmark Count",
    "format": "number"
  },
  "isRetweet": {
    "label": "Is Retweet",
    "format": "boolean"
  },
  "isQuote": {
    "label": "Is Quote",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Twitter/X Crypto & Stock Sentiment Scraper](https://apify.com/fastcrawler/twitter-x-crypto-stock-sentiment-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fastcrawler/twitter-x-crypto-stock-sentiment-scraper) to learn more, explore other use cases, and run it yourself.