JavaScript/Nodejs Code Samples Nodejs APIs -Match List using Node -Series Info using Node -Player Info using Node -Fantasy Scorecard using Node -Fantasy Match Points using Node -Fantasy Match Squad using Node Matches List ...const apikey = "%APIKEY%"; axios.get(`https://api.cricapi.com/v1/series?apikey=${apikey}&offset=0`)... Replace %APIKEY% with your Cricket Data API key Check out the below link for the complete code https://github.com/CricketData/Nodejs-Code-samples/blob/main/Current_Matches.js Series Info ...const apikey = "%APIKEY%"; axios.get(`https://api.cricapi.com/v1/series_info?apikey=${apikey}&offset=0&id=${id}`)... Replace %APIKEY% with your Cricket Data API key Check out the below link for the complete code https://github.com/CricketData/Nodejs-Code-samples/blob/main/Series_info.js Player Info ...const apikey = "%APIKEY%"; axios.get(`https://api.cricapi.com/v1/players_info?apikey=${apikey}&offset=0&id=${id}`)... Replace %APIKEY% with your Cricket Data API key Check out the below link for the complete code https://github.com/CricketData/Nodejs-Code-samples/blob/main/Player_info.js Fantasy scorecard ...const apikey = "%APIKEY%"; axios.get(`https://api.cricapi.com/v1/match_scorecard?apikey=${apikey}&offset=0&id=${id}`)... Replace %APIKEY% with your Cricket Data API key Check out the below link for the complete code https://github.com/CricketData/Nodejs-Code-samples/blob/main/Fantasy_matchscorcard.js Fantasy Match Points ...const apikey = "%APIKEY%"; axios.get(`https://api.cricapi.com/v1/match_points?apikey=${apikey}&offset=0&id=${id}`)... Replace %APIKEY% with your Cricket Data API key Check out the below link for the complete code https://github.com/CricketData/Nodejs-Code-samples/blob/main/Matchpoints.js Fantasy Match Squad ...const apikey = "%APIKEY%"; axios.get(`https://api.cricapi.com/v1/match_squad?apikey=${apikey}&offset=0&id=${id}`)... Replace %APIKEY% with your Cricket Data API key Check out the below link for the complete code https://github.com/CricketData/Nodejs-Code-samples/blob/main/Fantasysquad.js