# Lemmy Keyword Search: Find Posts on Any Topic

**Use case:** 

Track a brand or topic on Lemmy by pulling every post that mentions your keyword across lemmy.world, sorted newest first, with author and score.

## Input

```json
{
  "instance": "lemmy.world",
  "mode": "search",
  "query": "framework laptop",
  "sort": "New",
  "maxItems": 150,
  "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.