Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
496 Bytes
import axios from "axios";
const base_url = "https://youtube-v31.p.rapidapi.com";
export const options = {
params: {
maxResults: "51",
},
headers: {
"X-RapidAPI-Key": process.env.REACT_APP_SECRET_KEY,
"X-RapidAPI-Host": "youtube-v31.p.rapidapi.com",
},
};
const fetchApi = async (url) => {
try {
const { data } = await axios.get(`${base_url}/${url}`, options);
return data;
} catch (error) {
console.log("error in fetch api");
}
};
export default fetchApi;