An open API service indexing awesome lists of open source software.

https://github.com/montyanderson/google-suggestions

Scrape autocomplete suggestions from Google Search
https://github.com/montyanderson/google-suggestions

Last synced: 3 months ago
JSON representation

Scrape autocomplete suggestions from Google Search

Awesome Lists containing this project

README

        

# google-suggestions
Scrape autocomplete suggestions from Google Search

[![Build Status](https://travis-ci.org/montyanderson/google-suggestions.svg?branch=master)](https://travis-ci.org/montyanderson/google-suggestions)

```
npm install google-suggestions --save
```

``` javascript
const suggestions = require("google-suggestions");

suggestions("my hat")
.then(response => console.log(response));

```

``` javascript
[ 'i want my hat back',
'this is not my hat',
'all around my hat',
'wherever i lay my hat' ]
```