# Download a user's latest tweets

**Use case:** 

Fetch the latest tweets from an account by username, with counts and timestamps.

## Input

```json
{
  "usernames": [
    "NASA"
  ],
  "tweetUrls": [],
  "maxTweetsPerUser": 50,
  "concurrency": 5,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "staleAfterDays": 30
}
```

## Output

```json
{
  "username": {
    "label": "username"
  },
  "text": {
    "label": "text"
  },
  "created_at": {
    "label": "created_at"
  },
  "lang": {
    "label": "lang"
  },
  "is_reply": {
    "label": "is_reply"
  },
  "is_retweet": {
    "label": "is_retweet"
  },
  "url": {
    "label": "url"
  },
  "scrapedAt": {
    "label": "scrapedAt"
  }
}
```

## About this Actor

This example demonstrates how to use [Twitter / X Tweet Scraper - Tweets by Username, URL or ID](https://apify.com/goat255/twitter-tweet-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/goat255/twitter-tweet-scraper) to learn more, explore other use cases, and run it yourself.