Scrape Google SERP using a simople POST API

This API will allow you to use the Scraping Robot's JSON parser to retrieve maximum information for the passed search query. To do this, you need to send a POST-request to the Scraping Robot server and transfer your token as a query-parameter and all the task-parameters as a JSON-object in a POST body.


The minimum - is only three required parameters:

  • url
  • module and the actual search query (query is passed in the nested params object)
    All other parameters are optional and are passed in the nested params-object.

The API has additional configurable parameters, which allows you to control scraping (see optional parameters).

Simplest scraping example:

POST https://api.scrapingrobot.com/?token=<YOUR_SR_TOKEN>

# Request body:
{
  "url":"https://www.google.com/",
  "module":"GoogleScraper",
  "params":
  {
    "query":"pizza"
  }
}
Language
Authorization
Query
URL
Click Try It! to start a request and see the response here!