# Daily monitoring of a Truth Social profile

**Use case:** 

Incrementally scrape new posts from any Truth Social profile without duplicating old data. Resume from the last scraped post ID automatically.

## Input

```json
{
  "username": "realDonaldTrump",
  "maxPosts": 30,
  "onlyReplies": false,
  "onlyMedia": false,
  "cleanContent": true,
  "useLastPostId": true
}
```

## Output

```json
{
  "id": {
    "label": "Post ID",
    "format": "text"
  },
  "created_at": {
    "label": "Created",
    "format": "text"
  },
  "content": {
    "label": "Content",
    "format": "text"
  },
  "account.username": {
    "label": "Username",
    "format": "text"
  },
  "account.display_name": {
    "label": "Display Name",
    "format": "text"
  },
  "replies_count": {
    "label": "Replies",
    "format": "number"
  },
  "reblogs_count": {
    "label": "Retruths",
    "format": "number"
  },
  "favourites_count": {
    "label": "Likes",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Truth Social Scraper](https://apify.com/parsebird/truth-social-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/truth-social-scraper) to learn more, explore other use cases, and run it yourself.