how to grab games list

Avatar image for lhero
lhero

2

Forum Posts

0

Wiki Points

0

Followers

Reviews: 0

User Lists: 0

Hi all,

I am very new to this api stuff. I just want to know what is the end point to spit out in json a list of games. My objective is to only store the game names into my own database through rake db:seed using ruby on rails.

I've tried http://www.giantbomb.com/api/games/?api_key=[APIKEY]&format=json but it spits a weird limited list of games.

Thanks!

Avatar image for frobie
frobie

268

Forum Posts

262594

Wiki Points

0

Followers

Reviews: 0

User Lists: 4

#2 frobie  Staff

@lhero If you want just the names, it would be:

http://www.giantbomb.com/api/games/?api_key=[APIKEY]&format=json&field_list=name

Then you would need to paginate to get more games:

http://www.giantbomb.com/api/games/?api_key=[APIKEY]&format=json&field_list=name&page=2