// Install axios library by running "yarn add axios" in the terminal// Then import the axios libraryimport axios from"axios"// Add the users' address hereconstaddress="..."// Add your API Key in the ENV & add it hereconstapikey=process.env.TRUEHUMAN_API_KEY// Set the URLconsturl=`https://api.truehuman.xyz`+`/v1?apiKey=${apiKey}&address=${address}`// Call the APItry {constres=awaitaxios.get(url)console.log(res)} catch (error) {console.log(error) }