Simple actor, which uses the keyword as a search input for Amazon, then crawl the first page including description, link to the item and all offers
- Modified
- Used by51 users
- Used1,610 times
- API
- Source code
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token.
const Apify = require('apify');
// Set API token
Apify.client.setOptions({ token: '<YOUR_API_TOKEN>' });
// Prepare actor input
const input = {};
// Run the actor
const run = await Apify.call('androlein/amazon-parser', input);
// Print actor output (if any)
console.log('Output');
console.dir(run.output);
// Fetch and print actor results from the run's dataset (if any)
console.log('Results from dataset');
const dataset = await Apify.openDataset(run.defaultDatasetId, { forceCloud: true });
await dataset.forEach(async (item, index) => {
console.log(JSON.stringify(item));
});