# Scrape Posts From a Threads Profile

**Use case:** 

Pull the latest posts from any public Threads profile — text, likes, replies, reposts, quotes, and post URLs — in one run. Newest first, no login.

## Input

```json
{
  "usernames": [
    "natgeo"
  ],
  "maxPostsPerProfile": 50
}
```

## Output

```json
{
  "username": {
    "label": "Username"
  },
  "text": {
    "label": "Text"
  },
  "likes": {
    "label": "Likes"
  },
  "replies": {
    "label": "Replies"
  },
  "reposts": {
    "label": "Reposts"
  },
  "quotes": {
    "label": "Quotes"
  },
  "createdAt": {
    "label": "Created at"
  },
  "url": {
    "label": "Url"
  }
}
```

## About this Actor

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