# X Twitter Hashtag Performance Tracker

**Use case:** 

Collect tweets from campaign hashtags within a selected date range. Useful for
  launch reporting, engagement analysis, and post-campaign exports

## Input

```json
{
  "inputTargetType": "search",
  "searchTerms": "#ai OR #agents",
  "hashtags": "ai,agents",
  "sort": "latest",
  "startDate": "2026-07-01",
  "endDate": "2026-07-31",
  "onlyImage": false,
  "onlyVideo": false,
  "onlyVerifiedUsers": false,
  "includeReplies": true,
  "includeRetweets": true,
  "page": 1,
  "limit": 10,
  "maxPages": 1,
  "maxItems": 500
}
```

## 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.