# Bulk Tweet Analytics Export

**Use case:** 

Paste a list of post URLs from X and get one clean row per post: views, likes, reposts, replies, quotes, bookmarks, author, follower count, publish date and full text. Built for reporting on a campaign or an account's month of posting without opening each one and copying numbers by hand.

## Input

```json
{
  "tweetUrls": [
    "https://x.com/NASA/status/2095206153277862026",
    "https://x.com/NASA/status/2094884934510956691",
    "https://x.com/NASA/status/2094742199736926232"
  ]
}
```

## Output

```json
{
  "channel_id": {
    "label": "Author",
    "format": "string"
  },
  "title": {
    "label": "Tweet",
    "format": "string"
  },
  "likes": {
    "label": "Likes",
    "format": "integer"
  },
  "shares": {
    "label": "Retweets",
    "format": "integer"
  },
  "quotes": {
    "label": "Quotes",
    "format": "integer"
  },
  "comments": {
    "label": "Replies",
    "format": "integer"
  },
  "view_count": {
    "label": "Views",
    "format": "integer"
  },
  "author_followers": {
    "label": "Followers",
    "format": "integer"
  },
  "tweet_url": {
    "label": "Tweet",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Tweet Analytics Scraper - X Post Metrics, Views & Likes](https://apify.com/zaver.api/tweet-analytics-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zaver.api/tweet-analytics-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/zaver.api/tweet-analytics-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
