# Build a developer tools X tweet dataset

**Use case:** 

Create a small dataset of recent public tweets from developer-tool accounts for product, ecosystem, or content research.

## Input

```json
{
  "profileUrls": [
    {
      "url": "https://x.com/github"
    },
    {
      "url": "https://x.com/nodejs"
    },
    {
      "url": "https://x.com/typescript"
    }
  ],
  "statusUrls": [],
  "maxTweetsPerProfile": 4,
  "includeReplies": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "displayName": {
    "label": "Display name",
    "format": "text"
  },
  "tweetId": {
    "label": "Tweet ID",
    "format": "text"
  },
  "tweetUrl": {
    "label": "Tweet URL",
    "format": "link"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "createdAt": {
    "label": "Created at",
    "format": "text"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "mediaUrls": {
    "label": "Media URLs",
    "format": "text"
  },
  "isReply": {
    "label": "Is reply",
    "format": "boolean"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "text"
  }
}
```

## About this Actor

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