Amazon Search API (Async)

This endpoint will retrieve products for a specified search term from Amazon search page and transform it into usable JSON.

Single Query request:

import fetch from 'node-fetch';
const options = {
  method: 'POST',
  body: JSON.stringify({
    apiKey: 'APIKEY',
    query: 'QUERY',
    callback: {
            type: 'webhook',
            url: 'CALLBACK' }}),
  headers: {
    'Content-Type': 'application/json',
  },
}

fetch('http://async.scraperapi.com/structured/amazon/search', options)
  .then(response => {
    response.text().then(text => console.log(text));
  })
  .catch(error => {
    console.log(error)
  })

Multiple Query request:

import fetch from 'node-fetch';
const options = {
  method: 'POST',
  body: JSON.stringify({
    apiKey: 'APIKEY',
    query: ['QUERY1','QUERY2','QUERY3'],
    callback: {
            type: 'webhook',
            url: 'CALLBACK' }}),
  headers: {
    'Content-Type': 'application/json',
  },
}

fetch('http://async.scraperapi.com/structured/amazon/search', options)
  .then(response => {
    response.text().then(text => console.log(text));
  })
  .catch(error => {
    console.log(error)
  })

Parameters available for this method:

Sample Response

Single Query Request:

{
	"id": "f9c41146-ecd3-415c-ae0a-461de670e2e8",
	"status": "running",
	"statusUrl": "http://async.scraperapi.com/structured/amazon/search/f9c41146-ecd3-415c-ae0a-461de670e2e8",
	"query": "ball"
}

Multiple Query Request:

[
[
	{
		"id": "5b0c838a-d0eb-46c3-ad9a-e82e398d56a5",
		"status": "running",
		"statusUrl": "http://async.scraperapi.com/structured/amazon/search/5b0c838a-d0eb-46c3-ad9a-e82e398d56a5",
		"query": "ball"
	},
	{
		"id": "df83b9e1-be25-40de-8702-4e934f057867",
		"status": "running",
		"statusUrl": "http://async.scraperapi.com/structured/amazon/search/df83b9e1-be25-40de-8702-4e934f057867",
		"query": "motorbike"
	}
]

After the job(s) finish, you will find the result under the response key in the response JSON object. The structure is the same as in the corresponding SYNC data endpoint.

Last updated