Posts

Live IPL

// be sure to include jquery // be sure to replace with your actual api key $.get("https://cricapi.com/api/cricket?apikey=t2CfGcJ6E4e2BobVIZZSplLx9u02", function(matchdata) { matchdata.data.forEach(function(md) { console.log(md.description + " - to grab more details, simply use the unique_id " + md.unique_id + " with the cricketScore api!"); }); });