# Mastodon Brand Monitoring Scraper

**Use case:** 

Monitor public Mastodon hashtag conversations with normalized post, author, media, and engagement data.

## Input

```json
{
  "instanceUrl": "https://mastodon.social",
  "hashtags": [
    "technology",
    "opensource",
    "fediverse"
  ],
  "accountUrls": [],
  "statusUrls": [],
  "maxItems": 100
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type"
  },
  "contentText": {
    "label": "Post text"
  },
  "displayName": {
    "label": "Account display name"
  },
  "url": {
    "label": "Public URL",
    "format": "link"
  },
  "accountAcct": {
    "label": "Post author"
  },
  "acct": {
    "label": "Account handle"
  },
  "source": {
    "label": "Source"
  },
  "instance": {
    "label": "Instance",
    "format": "link"
  },
  "createdAt": {
    "label": "Created at",
    "format": "datetime"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "datetime"
  },
  "repliesCount": {
    "label": "Replies",
    "format": "number"
  },
  "reblogsCount": {
    "label": "Boosts",
    "format": "number"
  },
  "favouritesCount": {
    "label": "Favourites",
    "format": "number"
  },
  "followersCount": {
    "label": "Followers",
    "format": "number"
  },
  "statusesCount": {
    "label": "Public statuses",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Mastodon Instance Hashtag Monitor](https://apify.com/automation-lab/mastodon-instance-hashtag-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/mastodon-instance-hashtag-monitor) to learn more, explore other use cases, and run it yourself.