Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 381 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 381 Bytes

steamgriddb

A dart client for steamgriddb.com

final sgdb = SteamGridDB(apiKey);
final searchResults = await sgdb.getGamesBySearchTerm('half life');
if(searchResults.isNotEmpty) {
  final gameId = searchResults.first.id.toString();
  final grids = await sgdb.getCoversForGame(gameId);
}

This package is not affiliated with Valve Corporation nor the Steam platform.