axios example
HTML
<script src="https://unpkg.com/[email protected]/dist/axios.js"></script>
JavaScript
var root = 'https://fmpcloud.io/api/v3/enterprise-values/AAPL?period=quarter&apikey=9af8c33b45eff1bc9610f3d29d358eba'
// Make a GET request
axios.get(root)
.then((data) => {
console.log('data', data)
})
.catch((e) => {
console.log('error', e)
})