# Scrape lemmy.world Front Page: Hot Posts + Scores

**Use case:** 

The hottest lemmy.world front-page posts as structured data: title, link, author, score, and comment count. Sort by Hot, New, or Top, no login needed.

## Input

```json
{
  "instance": "lemmy.world",
  "mode": "feed",
  "query": "technology",
  "sort": "Hot",
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "community": {
    "label": "Community",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "comments": {
    "label": "Comments",
    "format": "number"
  },
  "postUrl": {
    "label": "Post",
    "format": "link"
  }
}
```

## About this Actor

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