Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kevinbatdorf/steam-api
- Owner: KevinBatdorf
- Created: 2022-05-22T05:13:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-03T12:17:23.000Z (11 months ago)
- Last Synced: 2024-05-02T05:58:35.759Z (8 months ago)
- Language: TypeScript
- Homepage: https://steam-search.vercel.app
- Size: 11.5 MB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
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)