# X Twitter High-Engagement Tweet Discovery

**Use case:** 

Find top-performing tweets for a topic using likes, retweets, and replies thresholds. Useful for trend research and content inspiration.

## Input

```json
{
  "inputTargetType": "search",
  "searchTerms": "twitter scraper OR x scraper OR social listening",
  "language": "en",
  "sort": "top",
  "minimumLikes": 50,
  "minimumRetweets": 10,
  "minimumReplies": 5,
  "onlyImage": false,
  "onlyVideo": false,
  "onlyVerifiedUsers": false,
  "includeReplies": true,
  "includeRetweets": true,
  "page": 1,
  "limit": 100,
  "maxPages": 1,
  "maxItems": 100
}
```

## Output

```json
{
  "date": {
    "label": "Date",
    "format": "string"
  },
  "user.username": {
    "label": "Username",
    "format": "string"
  },
  "rawContent": {
    "label": "Text",
    "format": "string"
  },
  "likeCount": {
    "label": "Likes",
    "format": "integer"
  },
  "retweetCount": {
    "label": "Retweets",
    "format": "integer"
  },
  "replyCount": {
    "label": "Replies",
    "format": "integer"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "integer"
  },
  "viewCount": {
    "label": "Views",
    "format": "integer"
  },
  "url": {
    "label": "Tweet URL",
    "format": "string"
  },
  "id_str": {
    "label": "Tweet ID",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [X Twitter Tweet Scraper](https://apify.com/simoit/x-twitter-search-tweets-scrapper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/simoit/x-twitter-search-tweets-scrapper) to learn more, explore other use cases, and run it yourself.