Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 362 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 362 Bytes

Steam Fetcher

Small HTTP Service that searches for Steam-apps and returns their app-id and name (since SteamAPI doesn't have a search function)

Endpoints

  • /search?name={query}

Searches for an App

Params

name - string What do you think it does?!

Response

{
	"apps": [
		{
			"appid": integer,
			"name": string
		}
	]
}