youtube-extractor
Version:
Unofficial YouTube API for download and search
10 lines (8 loc) • 427 B
JavaScript
const fetch = require("node-fetch")
const baseURL = "http://www.google.com/complete/search?client=firefox&ds=yt&hl=tr&ie=utf_8&oe=utf_8&format=legacy&q="
const searchSuggest = async (keyword) => {
const response = await fetch(baseURL + encodeURIComponent(keyword), {headers: {"content-type": "application/json; charset=utf-8"}})
const json = await response.json();
return json[1];
}
module.exports = searchSuggest