// Import the axios library const axios = require('axios'); // Set your access token (you can get this from your Spotify premium account) const accessToken = 'your_access_token_here'; // Initialize the Spotify Web API const spotifyAPI = axios.create({ baseURL: 'https://api.spotify.com/v1/', headers: { 'Authorization': `Bearer ${accessToken}` } }); // Get a user's top tracks spotifyAPI.get('me/top/tracks', { params: { limit: 10, time_range: 'short_term' } }) .then(response => { // Handle the response console.log(response.data); }) .catch(error => { // Handle the error console.error(error.response.data); }); // Get a track's audio features spotifyAPI.get('audio-features/track/4iV5W9uYEdYUVa79A7WQQb') .then(response => { // Handle the response console.log(response.data); }) .catch(error => { // Handle the error console.error(error.response.data); });