# Truth Social Post URL Extractor

**Use case:** 

Extract specific Truth Social posts by URL with author profile fields, post text, timestamps, engagement counts, and canonical links.

## Input

```json
{
  "mode": "post",
  "usernames": [
    "realDonaldTrump"
  ],
  "postUrls": [
    "https://truthsocial.com/@realDonaldTrump/posts/114024798430109897"
  ],
  "maxPosts": 10,
  "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.