Skip to content

Instantly share code, notes, and snippets.

@code4cake
Forked from kenmazaika/api.rb
Created December 23, 2015 20:41
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