Trendyol Product Scraper

  • yeyo/trendyol-scraper
  • Modified
  • Users 75
  • Runs 841
  • Created by Author's avataryeyo.io

This scraper can help you retrieve current and accurate data about products from Trendyol, an online retail platform. This tool can be useful for keeping track of the latest offerings from Trendyol or for gathering information for research or analysis purposes.

Free trial for 1 day

Then $29.00/month

No credit card required now

Trendyol Product Scraper

Free trial for 1 day

Then $29.00/month

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with API token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "input": [
        {
            "url": "https://www.trendyol.com/apple/iphone-11-128-gb-beyaz-cep-telefonu-aksesuarsiz-kutu-apple-turkiye-garantili-p-64074794"
        },
        {
            "url": "https://www.trendyol.com/sr?q=iphone"
        }
    ],
    "maxItems": 10,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

(async () => {
    // Run the Actor and wait for it to finish
    const run = await client.actor("yeyo/trendyol-scraper").call(input);

    // Fetch and print Actor results from the run's dataset (if any)
    console.log('Results from dataset');
    const { items } = await client.dataset(run.defaultDatasetId).listItems();
    items.forEach((item) => {
        console.dir(item);
    });
})();