var axios = require("axios").default;
var options = {
method: 'GET',
url: 'https://ytstream-download-youtube-videos.p.rapidapi.com/dl',
params: {id: 'UxxajLWwzqY', geo: 'DE'},
headers: {
'x-rapidapi-host': 'ytstream-download-youtube-videos.p.rapidapi.com',
'x-rapidapi-key': 'd5725b8415msh3877c79bb297ac1p1d7688jsn07edd0275a57'
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});