# Mastodon Account Scraper - Single Profile Toots

**Use case:** 

Archivists and feed builders can pull every toot from a Mastodon profile like @Gargron, with post text, timestamps, and boost and reply counts.

## Input

```json
{
  "instance": "mastodon.social",
  "mode": "account",
  "query": "@Gargron",
  "local": false,
  "maxItems": 200,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "author": {
    "label": "Author",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "favouritesCount": {
    "label": "Favourites",
    "format": "number"
  },
  "reblogsCount": {
    "label": "Reblogs",
    "format": "number"
  },
  "createdAt": {
    "label": "Created",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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