Extract information from Amazon category listing pages.
INTEGRATIONS & CODE EXAMPLES
Integrating with Acuvirt.io is as easy as to make a GET HTTP request. Selecting a language and check code examples for the above demo.
GET /https://api.acuvirt.io/category-results-api?key=88c873ad0fd886460c1b&category_link=https://www.amazon.com/s?bbn=16225009011%26rh=n%3A%2116225009011%2Cn%3A502394%2Cn%3A281052
curl --location --request GET 'https://api.acuvirt.io/category-results-api?key=88c873ad0fd886460c1b&category_link=https://www.amazon.com/s?bbn=16225009011%26rh=n%3A%2116225009011%2Cn%3A502394%2Cn%3A281052'
var axios = require('axios'); var config = { method: 'get', url: 'https://api.acuvirt.io/category-results-api?key=88c873ad0fd886460c1b&category_link=https://www.amazon.com/s?bbn=16225009011%26rh=n%3A%2116225009011%2Cn%3A502394%2Cn%3A281052', headers: { } }; axios(config) .then(function (response) { console.log(JSON.stringify(response.data)); }) .catch(function (error) { console.log(error); });
import requests url = "https://api.acuvirt.io/category-results-api?key=88c873ad0fd886460c1b&category_link=https://www.amazon.com/s?bbn=16225009011%26rh=n%3A%2116225009011%2Cn%3A502394%2Cn%3A281052" payload={} headers = {} response = requests.request("GET", url, headers=headers, data=payload) print(response.text)
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => https://api.acuvirt.io/category-results-api?key=88c873ad0fd886460c1b&category_link=https://www.amazon.com/s?bbn=16225009011%26rh=n%3A%2116225009011%2Cn%3A502394%2Cn%3A281052, CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'GET', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
Free 100-request trial • No credit card required • Cancel at any time
Get your free API key Try a live demoAcuvirt.io is not linked with or authorized by Amazon in any manner, and it does not use any of Amazon's APIs. Acuvirt.io API delivers data gathered from public domain websites. All trademarks and copyright belong to their respective owners.