# X Twitter Post Engagement Metrics Scraper

**Use case:** 

Scrape engagement data and author details for selected X (Twitter) posts. Retrieve metrics such as likes, retweets, replies, quotes, views, bookmarks and more.

## Input

```json
{
  "postUrls": [
    "https://x.com/HardwareSteam/status/2050983784879722845",
    "https://x.com/GymBr_o/status/2050688856861630710",
    "https://x.com/JasonDeJesuz/status/2050885797029499224"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "url": {
    "label": "Post URL",
    "format": "link"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "retweets": {
    "label": "Retweets",
    "format": "number"
  },
  "replies": {
    "label": "Replies",
    "format": "number"
  },
  "quotes": {
    "label": "Quotes",
    "format": "number"
  },
  "bookmarks": {
    "label": "Bookmarks",
    "format": "number"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "created_at": {
    "label": "Posted At",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "tweet_id": {
    "label": "Tweet ID",
    "format": "text"
  },
  "lang": {
    "label": "Language",
    "format": "text"
  },
  "possibly_sensitive": {
    "label": "Sensitive",
    "format": "text"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "text"
  },
  "media": {
    "label": "Media",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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