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

https://github.com/defuncart/steamgriddb

A dart client for steamgriddb.com
https://github.com/defuncart/steamgriddb

dart dartlang flutter steamgriddb

Last synced: 3 months ago
JSON representation

A dart client for steamgriddb.com

Awesome Lists containing this project

README

        

# steamgriddb

A dart client for steamgriddb.com

```dart
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.