# Export & Download Threads Data to CSV / Excel

**Use case:** 

Download any Threads account's posts and engagement (likes, replies, views, reposts) to CSV/Excel/JSON with timestamps and media URLs. No login, no API token.

## Input

```json
{
  "mode": "user",
  "usernames": [
    "zuck"
  ],
  "searchSort": "top",
  "maxPosts": 50
}
```

## Output

```json
{
  "author": {
    "label": "Author",
    "format": "text"
  },
  "content": {
    "label": "Content",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "text"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "repostCount": {
    "label": "Reposts",
    "format": "number"
  },
  "shareCount": {
    "label": "Shares",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "quoteCount": {
    "label": "Quotes",
    "format": "number"
  },
  "mediaType": {
    "label": "Media Type",
    "format": "text"
  },
  "publishedAtISO": {
    "label": "Published (ISO)",
    "format": "date"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  },
  "sourceType": {
    "label": "Source",
    "format": "text"
  },
  "sourceQuery": {
    "label": "Query",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Threads Scraper — Posts, Profiles, Hashtag & Keyword Search](https://apify.com/claude_code_reviewer/threads-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/claude_code_reviewer/threads-scraper) to learn more, explore other use cases, and run it yourself.