Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hasdata/google-maps-api
Real-Time Google Maps API
https://github.com/hasdata/google-maps-api
google google-maps google-maps-api google-maps-javascript-api nodejs scraper
Last synced: 30 days ago
JSON representation
Real-Time Google Maps API
- Host: GitHub
- URL: https://github.com/hasdata/google-maps-api
- Owner: HasData
- License: mit
- Created: 2022-08-10T11:53:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-05T18:14:03.000Z (about 2 years ago)
- Last Synced: 2024-11-10T19:22:30.930Z (about 1 month ago)
- Topics: google, google-maps, google-maps-api, google-maps-javascript-api, nodejs, scraper
- Language: JavaScript
- Size: 31.3 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Google Maps API
[Scrapeit Cloud](https://scrape-it.cloud/) - Web Scraping API with Proxy Rotation. Get valuable data at scale in HTML format from any website without need for a proxy.Interface to call [Google Maps Scraper](https://scrape-it.cloud/google-maps-scraper) easily from Node.
## Install
npm i @scrapeit-cloud/google-maps-api
## Usage
Signup to Scrapeit Cloud to [get your API key](https://app.scrape-it.cloud/sign-up) and some free credits to get started.import ScrapeitSDK from './index';
const main = async() => {
const scrapeit = new ScrapeitSDK('INSERT_YOUR_API_KEY_HERE');try {
const response = await scrapeit.scrape({
"keyword": "plumber in new york",
"country": "US",
"domain": "com"
});console.log(response);
} catch(e) {
console.log(e.message);
}
};main();
You can find all the supported parameters on [Scrapeit Cloud documentation](https://scrape-it.cloud/docs/google-scraping-api/maps).