Skip to content

serpapi/serpapi-javascript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SerpApi for JavaScript/TypeScript

Scrape and parse search engine results using SerpApi. Get search results from Google, Bing, Baidu, Yandex, Yahoo, Home Depot, eBay and more.

Usage

Node.js

npm install serpapi
import { Google } from "serpapi";
const google = new Google(API_KEY);
const json = await google.json({ q: "coffee", location: "Austin, Texas" });

Deno

import { Google } from "https://deno.land/x/serpapi/mod.ts";
const google = new Google(API_KEY);
const json = google.json({ q: "coffee", location: "Austin, Texas" });

Contributors