# Truth Social Profile Posts Monitor

**Use case:** 

Monitor Truth Social profile posts and extract author names, post content, dates, URLs, replies, ReTruths, and likes.

## Input

```json
{
  "mode": "profile",
  "usernames": [
    "realDonaldTrump"
  ],
  "postUrls": [],
  "maxPosts": 25,
  "includeReplies": false,
  "includeReblogs": true
}
```

## Output

```json
{
  "authorUsername": {
    "label": "Username",
    "format": "text"
  },
  "authorDisplayName": {
    "label": "Display Name",
    "format": "text"
  },
  "content": {
    "label": "Content",
    "format": "text"
  },
  "createdAt": {
    "label": "Posted At",
    "format": "text"
  },
  "repliesCount": {
    "label": "Replies",
    "format": "number"
  },
  "reblogsCount": {
    "label": "ReTruths",
    "format": "number"
  },
  "favouritesCount": {
    "label": "Likes",
    "format": "number"
  },
  "url": {
    "label": "Post URL",
    "format": "link"
  }
}
```

## About this Actor

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