Core APIs
Search API

Introduction

5min

Overview

SerpWow executes search requests in real time returning clean, structured JSON HTML or CSV results. You can achieve fine-grained control over your search query using the search parameters.

With SerpWow you can run search queries against Google, Bing, Yahoo, Baidu, Yandex, Naver, Amazon or Ebay.



We recommend watching this short video introduction to the SerpWow web app.



Making a Request

GET /search

Performing a search is as simple as making a GET HTTP request to the SerpWow search endpoint. The only required parameters are api_key (sign up for free to get an API key) and q (your search query).

For example, to search for the phrase pizza the SerpWow search request would be:

HTTP
Curl
Node.js
Python
PHP


To view SerpWow JSON results clearly in your browser we recommend these extensions for Chrome and Firefox

Lets say we want to refine our query to search for pizza within London, UK . Here's how we could use the SerpWow location parameter to achieve just that:

HTTP
Curl
Node.js
Python
PHP


Now lets try the same search but in Paris, France . When we update the location parameter note how SerpWow automatically changes the google_domain parameter to google.fr and the gl (country) and hl (language) parameters to hl=fr (so you see localized results exactly as a human user in Paris would):

HTTP
Curl
Node.js
Python
PHP


Now lets take a look at how to paginate through results using the page and num parameters. page determines the page number of the results (starting from 1) and num determines the number of results to show per page. If we wanted to show the 2nd page of results, based on 10 results per page, our query would be:

HTTP
Curl
Node.js
Python
PHP


Lastly, SerpWow supports more than just Google! You can use SerpWow to run searches against Bing, Yahoo, Baidu, Yandex, Naver or Amazon search engines. It's as simple as using the engine parameter - see below for searching using Bing:

Updated 11 Oct 2024
Did this page help you?