# Search Steam Games by Keyword - Steam Scraper

**Use case:** 

Type a keyword like "counter strike" and get every matching Steam game back as a list of titles and app IDs. Handy for franchise lookups.

## Input

```json
{
  "mode": "search",
  "query": "counter strike",
  "appIds": [
    "400",
    "620"
  ],
  "maxItems": 30,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "appId": {
    "label": "App ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "metacriticScore": {
    "label": "Metacritic",
    "format": "number"
  },
  "owners": {
    "label": "Owners",
    "format": "text"
  },
  "url": {
    "label": "Store URL",
    "format": "link"
  }
}
```

## About this Actor

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