# Monitor Latest Donald Trump Truth Social Posts

**Use case:** 

Track the latest Donald Trump Truth Social posts with clean JSON, including text, timestamps, URLs, media, replies, and engagement metrics.

## Input

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

## Output

```json
{
  "id": {
    "label": "Post ID",
    "format": "text"
  },
  "created_at": {
    "label": "Created At",
    "format": "date"
  },
  "in_reply_to_id": {
    "label": "Reply To ID",
    "format": "text"
  },
  "quote_id": {
    "label": "Quote ID",
    "format": "text"
  },
  "in_reply_to_account_id": {
    "label": "Reply To Account ID",
    "format": "text"
  },
  "sensitive": {
    "label": "Sensitive Content",
    "format": "boolean"
  },
  "spoiler_text": {
    "label": "Spoiler Text",
    "format": "text"
  },
  "visibility": {
    "label": "Visibility",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "uri": {
    "label": "URI",
    "format": "link"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "content": {
    "label": "Content",
    "format": "text"
  },
  "account.id": {
    "label": "Account ID",
    "format": "text"
  },
  "account.username": {
    "label": "Username",
    "format": "text"
  },
  "account.acct": {
    "label": "Account",
    "format": "text"
  },
  "account.display_name": {
    "label": "Display Name",
    "format": "text"
  },
  "account.locked": {
    "label": "Account Locked",
    "format": "boolean"
  },
  "account.bot": {
    "label": "Bot Account",
    "format": "boolean"
  },
  "account.discoverable": {
    "label": "Discoverable",
    "format": "boolean"
  },
  "account.group": {
    "label": "Group Account",
    "format": "boolean"
  },
  "account.created_at": {
    "label": "Account Created At",
    "format": "date"
  },
  "account.note": {
    "label": "Bio",
    "format": "text"
  },
  "account.url": {
    "label": "Profile URL",
    "format": "link"
  },
  "account.avatar": {
    "label": "Avatar",
    "format": "image"
  },
  "account.avatar_static": {
    "label": "Static Avatar",
    "format": "image"
  },
  "account.header": {
    "label": "Header Image",
    "format": "image"
  },
  "account.header_static": {
    "label": "Static Header Image",
    "format": "image"
  },
  "account.followers_count": {
    "label": "Followers Count",
    "format": "number"
  },
  "account.following_count": {
    "label": "Following Count",
    "format": "number"
  },
  "account.statuses_count": {
    "label": "Posts Count",
    "format": "number"
  },
  "account.last_status_at": {
    "label": "Last Post At",
    "format": "date"
  },
  "account.verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "account.location": {
    "label": "Location",
    "format": "text"
  },
  "account.website": {
    "label": "Website",
    "format": "link"
  },
  "account.unauth_visibility": {
    "label": "Unauthenticated Visibility",
    "format": "text"
  },
  "account.chats_onboarded": {
    "label": "Chats Onboarded",
    "format": "boolean"
  },
  "account.feeds_onboarded": {
    "label": "Feeds Onboarded",
    "format": "boolean"
  },
  "account.accepting_messages": {
    "label": "Accepts Messages",
    "format": "boolean"
  },
  "account.show_nonmember_group_statuses": {
    "label": "Show Non-member Group Posts",
    "format": "boolean"
  },
  "account.emojis": {
    "label": "Custom Emojis",
    "format": "array"
  },
  "account.fields": {
    "label": "Profile Fields",
    "format": "array"
  },
  "account.tv_onboarded": {
    "label": "TV Onboarded",
    "format": "boolean"
  },
  "account.tv_account": {
    "label": "TV Account",
    "format": "boolean"
  },
  "media_attachments": {
    "label": "Media Attachments",
    "format": "array"
  },
  "mentions": {
    "label": "Mentions",
    "format": "array"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "card": {
    "label": "Card",
    "format": "object"
  },
  "group": {
    "label": "Group",
    "format": "object"
  },
  "quote": {
    "label": "Quote",
    "format": "object"
  },
  "in_reply_to": {
    "label": "Reply To",
    "format": "object"
  },
  "reblog": {
    "label": "Reblog",
    "format": "object"
  },
  "sponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "replies_count": {
    "label": "Replies Count",
    "format": "number"
  },
  "reblogs_count": {
    "label": "Reblogs Count",
    "format": "number"
  },
  "favourites_count": {
    "label": "Favourites Count",
    "format": "number"
  },
  "favourited": {
    "label": "Favorited",
    "format": "boolean"
  },
  "reblogged": {
    "label": "Reblogged",
    "format": "boolean"
  },
  "muted": {
    "label": "Muted",
    "format": "boolean"
  },
  "pinned": {
    "label": "Pinned",
    "format": "boolean"
  },
  "bookmarked": {
    "label": "Bookmarked",
    "format": "boolean"
  },
  "poll": {
    "label": "Poll",
    "format": "object"
  },
  "emojis": {
    "label": "Emojis",
    "format": "array"
  }
}
```

## About this Actor

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