# Find NASA video posts on X Twitter

**Use case:** 

Collect public X/Twitter posts and engagement for NASA with source URLs. No login required by the Actor.

## Input

```json
{
  "scrapeType": "USER_POSTS",
  "usernames": [
    "NASA"
  ],
  "maxPostsPerProfile": 20,
  "includeReposts": false,
  "postUrls": [],
  "includeReplies": true,
  "maxReplies": 20,
  "queries": [],
  "startDate": "2026-08-01",
  "endDate": "2026-08-11",
  "language": "en",
  "mediaFilter": "VIDEOS",
  "verifiedOnly": false,
  "minLikes": 0,
  "minReposts": 0,
  "minReplies": 0,
  "minViews": 0,
  "maxResults": 25,
  "maxConcurrency": 10,
  "maxRetries": 3,
  "timeoutSecs": 20,
  "proxyConfiguration": {
    "useApifyProxy": false,
    "proxyUrls": []
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Media",
    "format": "image"
  },
  "sourceUsername": {
    "label": "Source profile",
    "format": "text"
  },
  "searchQuery": {
    "label": "Matched query",
    "format": "text"
  },
  "username": {
    "label": "Author",
    "format": "text"
  },
  "displayName": {
    "label": "Name",
    "format": "text"
  },
  "postType": {
    "label": "Post type",
    "format": "text"
  },
  "isRepost": {
    "label": "Repost",
    "format": "boolean"
  },
  "repostedByUsername": {
    "label": "Reposted by",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "number"
  },
  "bookmarkCount": {
    "label": "Bookmarks",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "totalEngagement": {
    "label": "Total engagement",
    "format": "number"
  },
  "engagementRate": {
    "label": "Engagement %",
    "format": "number"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "mediaType": {
    "label": "Media type",
    "format": "text"
  },
  "hashtags": {
    "label": "Hashtags",
    "format": "array"
  },
  "mentions": {
    "label": "Mentions",
    "format": "array"
  },
  "links": {
    "label": "Links",
    "format": "array"
  },
  "mediaUrls": {
    "label": "Media URLs",
    "format": "array"
  },
  "videoUrls": {
    "label": "Video URLs",
    "format": "array"
  },
  "quotedUsername": {
    "label": "Quoted author",
    "format": "text"
  },
  "quotedText": {
    "label": "Quoted text",
    "format": "text"
  },
  "url": {
    "label": "Post",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Collected",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [X Twitter Profiles, Posts, Replies](https://apify.com/trakk/x-twitter-public-data-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/trakk/x-twitter-public-data-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/trakk/x-twitter-public-data-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
