Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
We are still busy preparing this batch of data. Please come back in a few minutes.
Seems like this data source was never ran before...
Changes are only available only when you have ran at least a second time.
Nope... guess no Martians around... Maybe set the webhook URL before pressing this button again...
https://www.trendyol.com/trendyolmilla/gri-nakisli-fitted-orme-bluz-twoss21bz1311-p-86645692 https://www.trendyol.com/trendyolmilla/ekru-nakisli-fitted-orme-bluz-twoss21bz1311-p-86645691 https://www.trendyol.com/trendyolmilla/tas-fitilli-crop-orme-bluz-twoss21bz1182-p-86642242 https://www.trendyol.com/trendyolmilla/lacivert-fitilli-crop-orme-bluz-twoss21bz1182-p-86642243 https://www.trendyol.com/trendyolmilla/lila-fitilli-crop-orme-bluz-twoss21bz1182-p-86642241 https://www.trendyol.com/trendyolmilla/cok-renkli-renk-bloklu-fitilli-orme-bluz-twoss21bz1187-p-86645310 https://www.trendyol.com/trendyolmilla/cok-renkli-renk-bloklu-fitilli-crop-orme-bluz-twoss21bz1189-p-86645376 https://www.trendyol.com/trendyolmilla/lila-renk-bloklu-fitilli-crop-orme-bluz-twoss21bz1189-p-86645377 https://www.trendyol.com/trendyolmilla/antrasit-fitilli-crop-orme-bluz-twoss21bz0771-p-76736755 https://www.trendyol.com/trendyolmilla/bej-baskili-boyfriend-orme-t-shirt-twoss21ts1143-p-84271748 https://www.trendyol.com/trendyolmilla/siyah-kruvaze-orme-bluz-twoaw21bz1274-p-51103768 https://www.trendyol.com/trendyolmilla/siyah-nakisli-fitilli-orme-bluz-twoss21bz0770-p-76736307 https://www.trendyol.com/trendyolmilla/beyaz-fitilli-crop-orme-bluz-twoss21bz0771-p-76736754 https://www.trendyol.com/trendyolmilla/beyaz-baskili-crop-buzgulu-orme-t-shirt-twoss21ts0738-p-77801976 https://www.trendyol.com/trendyolmilla/beyaz-baskili-boyfriend-orme-t-shirt-twoss21ts0736-p-76737467 https://www.trendyol.com/trendyolmilla/beyaz-renkli-biyeli-basic-orme-t-shirt-twoss21ts0840-p-76737108 https://www.trendyol.com/trendyolmilla/beyaz-nakisli-fitilli-orme-bluz-twoss21bz0770-p-76736306 https://www.trendyol.com/trendyolmilla/lila-firfir-detayli-fitilli-orme-bluz-twoss21bz0943-p-86641772 https://www.trendyol.com/trendyolmilla/cok-renkli-citcitli-fitilli-orme-bluz-twoss21bz1188-p-86645374 https://www.trendyol.com/trendyolmilla/siyah-fitilli-crop-orme-bluz-twoss21bz1190-p-86645540 https://www.trendyol.com/trendyolmilla/kirmizi-fitilli-crop-orme-bluz-twoss21bz1190-p-86645597 https://www.trendyol.com/trendyolmilla/gri-fitilli-crop-orme-bluz-twoss21bz1190-p-86645569 https://www.trendyol.com/trendyolmilla/kirmizi-asimetrik-fitilli-orme-bluz-twoss21bz1183-p-86642309 https://www.trendyol.com/trendyolmilla/siyah-asimetrik-fitilli-orme-bluz-twoss21bz1183-p-86642308
Sample code snippets to quickly import data set into your application
For more information on how to automatically trigger an import please reference our WebHook API guide
Integrating with Java
import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; import java.util.Arrays; public class HelloWorld { public static void main(String[] args) { try { URL urlCSV = new URL( "https://cache.getdata.io/n85423_3bf26c80d2a0b142ce019a684a0b01a9eses/latest_all.csv" ); URLConnection urlConn = urlCSV.openConnection(); InputStreamReader inputCSV = new InputStreamReader( ((URLConnection) urlConn).getInputStream() ); BufferedReader br = new BufferedReader(inputCSV); String line; String[] fields; while ((line = br.readLine()) != null) { // Each row fields = line.split(","); System.out.println(Arrays.toString(fields)); } // clean up buffered reader br.close(); } catch (Exception e) { System.out.println(e.getMessage()); } } }
Integrating with NodeJs
const csv = require('csv-parser'); const https = require('https'); const fs = require('fs'); const file = fs.createWriteStream("temp_download.csv"); const request = https.get( "https://cache.getdata.io/n85423_3bf26c80d2a0b142ce019a684a0b01a9eses/latest_all.csv", function(response) { response.pipe(file); } ); file.on('finish', function() { file.close(); fs.createReadStream('temp_download.csv').pipe(csv()).on('data', (row) => { // Each row console.log(row); }).on('end', () => { console.log('CSV file successfully processed'); }); });
Integrating with PHP
$data = file_get_contents("https://cache.getdata.io/n85423_3bf26c80d2a0b142ce019a684a0b01a9eses/latest_all.csv"); $rows = explode("\n",$data); $s = array(); foreach($rows as $row) { # Each row var_dump( $row); }
Integrating with Python
import csv import urllib2 url = 'https://cache.getdata.io/n85423_3bf26c80d2a0b142ce019a684a0b01a9eses/latest_all.csv' response = urllib2.urlopen(url) cr = csv.reader(response) for row in cr: # Each row print row
Integrating with Ruby
require 'open-uri' require 'tempfile' require 'csv' temp_file = Tempfile.new( "getdata", :encoding => 'ascii-8bit') temp_file << open("https://cache.getdata.io/n85423_3bf26c80d2a0b142ce019a684a0b01a9eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
created on 2022-01-31