# Export Mastodon Public Timeline Data

**Use case:** 

Retrieve up to 200 posts from the public timeline of mastodon.social. Get detailed engagement stats, media URLs, and account information.

## Input

```json
{
  "instance": "mastodon.social",
  "mode": "publicTimeline",
  "hashtag": "technology",
  "maxResults": 200,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "id": {
    "label": "Post ID",
    "format": "string"
  },
  "createdAt": {
    "label": "Created At",
    "format": "string"
  },
  "username": {
    "label": "Username",
    "format": "string"
  },
  "displayName": {
    "label": "Display Name",
    "format": "string"
  },
  "followers": {
    "label": "Followers",
    "format": "number"
  },
  "content": {
    "label": "Content",
    "format": "string"
  },
  "favouritesCount": {
    "label": "Favourites",
    "format": "number"
  },
  "reblogsCount": {
    "label": "Reblogs",
    "format": "number"
  },
  "repliesCount": {
    "label": "Replies",
    "format": "number"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "tags": {
    "label": "Tags",
    "format": "string"
  },
  "mediaUrls": {
    "label": "Media URLs",
    "format": "string"
  },
  "url": {
    "label": "Post URL",
    "format": "string"
  },
  "accountUrl": {
    "label": "Account URL",
    "format": "string"
  },
  "instance": {
    "label": "Instance",
    "format": "string"
  }
}
```

## About this Actor

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