Core APIs
Search API

Introduction

4min

Overview

Scale SERP 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.



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



Making a Request

GET /search

Performing a search is as simple as making a GET HTTP request to the Scale SERP 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 Scale SERP search request would be:

HTTP
Curl
Node.js
Python
PHP


To view Scale SERP 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 Scale SERP 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 Scale SERP 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




Updated 11 Oct 2024
Did this page help you?