# Scrape X Replies

**Use case:** 

Scrape up to 5 direct X replies from the supplied public post URL. Each row keeps the reply text and source post together with public author, engagement, publish time, language, and media references when available.

## Input

```json
{
  "postUrlsOrIds": [
    "https://x.com/apify/status/2093346503326626183"
  ],
  "conversationDepth": "direct",
  "maxItems": 5
}
```

## Output

```json
{
  "id": {
    "label": "Reply ID",
    "format": "string"
  },
  "text": {
    "label": "Reply text",
    "format": "string"
  },
  "url": {
    "label": "Reply URL",
    "format": "string"
  },
  "sourcePost": {
    "label": "Source post",
    "format": "object"
  },
  "parentReply": {
    "label": "Parent reply",
    "format": "object"
  },
  "conversationId": {
    "label": "Conversation ID",
    "format": "string"
  },
  "author": {
    "label": "Reply author",
    "format": "object"
  },
  "engagement": {
    "label": "Engagement",
    "format": "object"
  },
  "publishedAt": {
    "label": "Published time",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "media": {
    "label": "Media",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [X (Twitter) Replies Scraper](https://apify.com/maximedupre/twitter-x-reply-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/twitter-x-reply-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/maximedupre/twitter-x-reply-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`).
