Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Litecoin - a lite version of Bitcoin. Launched!
by
OneFear
on 21/01/2018, 15:00:04 UTC
Dear community.

Does litecoin has official block explorer where I can track all the transactions (with API)?

Google didnt helped me a lot. If no, what is a best option?



Yes, what I've found is https://chain.so/api

Quote
  $.get( "https://chain.so/api/v2/get_info/DOGE", function( response ) {
               // success! use the data any way you like
     });

You just need to change it to
Quote
  $.get( "https://chain.so/api/v2/get_info/LTC", function( response ) {
               // success! use the data any way you like
     });