terminal
Serpeq

Playground

CREDITS: 0

Configuration

tune
const axios = require('axios');

let config = {
  method: 'get',
  url: 'https://api.serpq.com?query=United+State&hl=en&gl=us&page=1',
  headers: { 
    'X-API-KEY': '<YOUR_API_KEY>'
  }
};

axios(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});