Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kevinbatdorf/steam-api

A simple Next.js API to search Steam games and get game data
https://github.com/kevinbatdorf/steam-api

Last synced: 2 months ago
JSON representation

A simple Next.js API to search Steam games and get game data

Awesome Lists containing this project

README

        

# Steam API Search

## Search game appids

Get all games by search term ([See it](https://steam-search.vercel.app/api/games?search=cyperpunk2077))
```
/api/games?search=cyperpunk2077
```

Get a random 30 games ([See it](https://steam-search.vercel.app/api/games))
```
/api/games
```
## Game data
Note: To get data about a game, send a get request using the appid returned above to the following. This endpoint is rate limited though and abusing it may get you banned:

```
https://store.steampowered.com/api/appdetails?appids=${appid}
```

## Vercel

Deploy to Vercel by pressing the button below

[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2FKevinBatdorf%2Fsteam-api)