JSFiddle - React, Tailwind, and code Playground

by electronoob

JavaScript

fetch('https://customsearch.googleapis.com/customsearch/v1?q=tupac&key=AIzaSyCsRpjJQCVzK5fUT6MJMZPKlLTqZJ6PIB8&cx=ffd56f262e76c9bd1', {
  method: "GET",
})
.then(response => response.json()) 
.then(json => json.items.forEach(i=>console.log(i.title, i.formattedUrl)))
.catch(err => console.log(err));