# Track Brand Mentions on Twitter (X) in Real Time

**Use case:** 

Pull the latest tweets mentioning any brand, product or competitor. Export text, author, likes, retweets, replies and tweet URL to CSV, JSON or Excel.

## Input

```json
{
  "query": "tesla",
  "section": "latest",
  "limit": 20
}
```

## Output

```json
{
  "text": {
    "label": "Tweet",
    "format": "text"
  },
  "author_handle": {
    "label": "Handle",
    "format": "text"
  },
  "author_name": {
    "label": "Author",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "retweets": {
    "label": "Retweets",
    "format": "number"
  },
  "replies": {
    "label": "Replies",
    "format": "number"
  },
  "created_at": {
    "label": "Posted",
    "format": "text"
  },
  "lang": {
    "label": "Lang",
    "format": "text"
  },
  "url": {
    "label": "Tweet URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Twitter (X) Tweet Scraper – Search & Export Tweets by Keyword](https://apify.com/endspec/twitter-instant-tweet-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/endspec/twitter-instant-tweet-scraper) to learn more, explore other use cases, and run it yourself.