# X Twitter Karpathy Profile Monitor

**Use case:** 

Monitor all posts, including replies and retweets, from the Karpathy X profile. Gain insights into communication patterns and content strategies.

## Input

```json
{
  "username": "karpathy",
  "searchTerms": "",
  "sort": "latest",
  "includeReplies": true,
  "includeRetweets": true,
  "includePinned": true,
  "page": 1,
  "limit": 10,
  "maxPages": 1,
  "maxItems": 10
}
```

## 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"
  },
  "url": {
    "label": "Tweet URL",
    "format": "string"
  },
  "id_str": {
    "label": "Tweet ID",
    "format": "string"
  }
}
```

## About this Actor

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