# Threads News Accounts Posts Scraper

**Use case:** 

Scrape Threads posts from news accounts with username, post text, URL, and timestamp. Export structured social media data to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "usernames": [
    "cnn",
    "bbcnews"
  ]
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "postCode": {
    "label": "Post Code",
    "format": "text"
  },
  "postUrl": {
    "label": "Post Url",
    "format": "link"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted At",
    "format": "date"
  },
  "profileUrl": {
    "label": "Profile Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Threads Profile Scraper](https://apify.com/parseforge/threads-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/threads-search-scraper) to learn more, explore other use cases, and run it yourself.