# Threads 貼文下載｜匯出 CSV / Excel

**Use case:** 

把任意 Threads 帳號的貼文與完整互動數據（讚、回覆、轉發、觀看）一鍵下載匯出成 CSV/Excel/JSON，含時間戳與媒體網址。免登入、免 API token。

## Input

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

## Output

```json
{
  "author": {
    "label": "作者",
    "format": "text"
  },
  "content": {
    "label": "內容",
    "format": "text"
  },
  "publishedAt": {
    "label": "發佈時間",
    "format": "text"
  },
  "likeCount": {
    "label": "讚數",
    "format": "number"
  },
  "replyCount": {
    "label": "回覆數",
    "format": "number"
  },
  "repostCount": {
    "label": "轉發數",
    "format": "number"
  },
  "shareCount": {
    "label": "分享數",
    "format": "number"
  },
  "viewCount": {
    "label": "觀看數",
    "format": "number"
  },
  "quoteCount": {
    "label": "引用數",
    "format": "number"
  },
  "mediaType": {
    "label": "媒體類型",
    "format": "text"
  },
  "publishedAtISO": {
    "label": "發佈時間 (ISO)",
    "format": "date"
  },
  "postUrl": {
    "label": "貼文連結",
    "format": "link"
  },
  "sourceType": {
    "label": "來源模式",
    "format": "text"
  },
  "sourceQuery": {
    "label": "查詢條件",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Meta Threads 爬蟲 — 貼文、用戶、標籤與關鍵字一次搞定](https://apify.com/claude_code_reviewer/threads-feed-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/claude_code_reviewer/threads-feed-scraper) to learn more, explore other use cases, and run it yourself.