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