Home 1
1
const axios = require(“axios”);
const options = {
method: ‘GET’,
url: ‘https://nhentai.p.rapidapi.com/mangas/1’,
headers: {
‘X-RapidAPI-Host’: ‘nhentai.p.rapidapi.com’,
‘X-RapidAPI-Key’: ‘46804833e0mshdc72abe317af9c7p1c1347jsn7f07e21c613c’
}
};
axios.request(options).then(function (response) {
console.log(response.data);
}).catch(function (error) {
console.error(error);
});