Skip to content

Instantly share code, notes, and snippets.

@code4cake
Forked from kenmazaika/api.rb
Created December 23, 2015 20:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code4cake/bf516f4627f981a0c624 to your computer and use it in GitHub Desktop.
Save code4cake/bf516f4627f981a0c624 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'httparty'
resp = HTTParty.get("http://www.catfact.info//api/v1/facts.json?page=1&per_page=30")
resp['facts'].each do |item|
puts item.inspect
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment