I made a GET request to airtable table, but with the right key and right url he give me the 401 (Unauthorized) error.
fetch("https://api.airtable.com/...")
.then(response => response.json())
.then(data => {
console.log(data)
})
.catch(error => console.error(error))