API Docs: https://rawg.io/apidocs
Documentation link: https://api.rawg.io/docs/
Push the API Button in the top right and will lead you to another page. Press the said button in the image.
This will lead you to the page to get your own API Key. Take note that the key expires in a month after you activate it.
REST is used for this API Wrapper project so go ahead and follow the instructions here: https://rubygems.org/gems/rest-client/versions/2.1.0 to install the REST Gem.
You may read more of the documentation by checking out this link: https://github.com/rest-client/rest-client
run bundle install
You may now call on the API from RAWG as you follow the documentation of REST-Client here: https://rubydoc.info/github/rest-client/rest-client/master
If you're going to check out my code, these are the routes or data that I got from API to my localhost.
namespace :api do
get '/creator-roles' => 'creator_roles#index'
get '/developers' => 'developers#index'
get '/genres' => 'genres#index'
get '/platforms' => 'platforms#index'
get '/platforms_parents' => 'platforms_parents#index'
get '/creator-roles' => 'creator_roles#index'
namespace :rawgames do
get '/games' => 'games#index'
end
end



