In my rails application i want to use lite coins api calls. please let me know how to use this api in rails application.
I have implemented for bit coins i got this code:
from this i am getting the bit coins current value:
<% response = HTTParty.get("http://data.mtgox.com/api/2/BTCINR/money/ticker") %>
<% high = response["data"]["high"]["value"] %>
<% low = response["data"]["low"]["value"] %>
<% avg = response["data"]["avg"]["value"] %>
If anyone knows similar to this please help me out finding the current value of lite coins.