# Scrape Asklemmy posts from Lemmy

**Use case:** 

Pull asklemmy communities, posts and comments from any Lemmy instance without a login.

## Input

```json
{
  "instance": "lemmy.world",
  "communities": [
    "technology@lemmy.world"
  ],
  "postUrls": [],
  "searchQueries": [
    "asklemmy"
  ],
  "maxPostsPerSource": 100,
  "sort": "Active",
  "includeCommunityHeader": true,
  "includeComments": false,
  "maxCommentsPerPost": 50,
  "concurrency": 5,
  "proxyConfig": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "community": {
    "label": "Community"
  },
  "authorHandle": {
    "label": "Author"
  },
  "score": {
    "label": "Score"
  },
  "upvotes": {
    "label": "Upvotes"
  },
  "commentCount": {
    "label": "Comments"
  },
  "title": {
    "label": "Title"
  },
  "content": {
    "label": "Comment"
  },
  "linkUrl": {
    "label": "Link"
  },
  "createdAt": {
    "label": "Created"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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