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...
Kategori 1 | Kategori 2 | Kategori 3 | Marka | Ürün Adı | Satıcı | Satıcı Ünvanı | Ürün Fiyatı | Ürün Puanı | Ürün Değerlendirme | Satıcı 2 | Satıcı 2 Fiyat | Satıcı 3 | Satıcı 3 Fiyat | Kampanya 1 | Kampanya 2 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Saç Bakımı | Şampuan | Bonacure Şampuan | Bonacure | Derin Temizleme Şampuanı 1000 ml 4045787427042 | odak kozmetik paz tic ltd şti | ODAK KOZMETİK PAZARLAMA TİC.LTD.ŞTİ. | 187,90 TL | 141 Değerlendirme | CK-Kozmetik | 188 TL | Saçhane | 193,90 TL | 60 TL ve Üzeri Kargo Bedava | https://www.trendyol.com/bonacure/derin-temizleme-sampuani-1000-ml-4045787427042-... | https://www.trendyol.com/bonacure/derin-temizleme-sampuani-1000-ml-4045787427042-... | 2022-03-28 06:04:59 | 2022-03-28 06:04:59 | 2022-03-28 06:04:59 | ||
Saç Bakımı | Şampuan | Bonacure Şampuan | Bonacure | Ph 4.5 Renk Koruma Sülfatsız Şampuan 1000 ml 4045787426427 | Prestige Grup Bilişim Kozmetik İTH.İHR. | PRESTİGE GRUP BİLİŞİM KOZMETİK İTH. İHR. SAN. VE TİC. LTD. ŞTİ. | 185,80 TL | 695 Değerlendirme | odak kozmetik paz tic ltd şti | 186 TL | farmaucuz | 186,80 TL | 60 TL ve Üzeri Kargo Bedava | https://www.trendyol.com/bonacure/ph-4-5-renk-koruma-sulfatsiz-sampuan-1000-ml-40... | https://www.trendyol.com/bonacure/ph-4-5-renk-koruma-sulfatsiz-sampuan-1000-ml-40... | 2022-03-28 06:04:59 | 2022-03-28 06:04:59 | 2022-03-28 06:04:59 | ||
Saç Bakımı | Şampuan | Bonacure Şampuan | Bonacure | Schwarzkopf Bonacure Hyaluronic Nem Yükleyen Şampuan 1000ml 4045787426700 | Prestige Grup Bilişim Kozmetik İTH.İHR. | PRESTİGE GRUP BİLİŞİM KOZMETİK İTH. İHR. SAN. VE TİC. LTD. ŞTİ. | 173,15 TL | 1316 Değerlendirme | odak kozmetik paz tic ltd şti | 173,25 TL | Saçhane | 178,90 TL | 60 TL ve Üzeri Kargo Bedava | https://www.trendyol.com/bonacure/schwarzkopf-bonacure-hyaluronic-nem-yukleyen-sa... | https://www.trendyol.com/bonacure/schwarzkopf-bonacure-hyaluronic-nem-yukleyen-sa... | 2022-03-28 06:04:59 | 2022-03-28 06:04:59 | 2022-03-28 06:04:59 | ||
Saç Bakımı | Şampuan | Bonacure Şampuan | Bonacure | Schwarzkopf Bonacure Peptide Acil Kurtarma Derin Besleme Şampuan 1000ml 404578742... | Saçhane | MOT GRUP BİLİŞİM LİMİTED ŞİRKETİ | 189,90 TL | 2053 Değerlendirme | Eybi Dünyası | 208,75 TL | WorldExpress | 219 TL | 60 TL ve Üzeri Kargo Bedava | 2 Adet ve Üzeri 15 TL İndirim | https://www.trendyol.com/bonacure/schwarzkopf-bonacure-peptide-acil-kurtarma-deri... | https://www.trendyol.com/bonacure/schwarzkopf-bonacure-peptide-acil-kurtarma-deri... | 2022-03-28 06:04:59 | 2022-03-28 06:04:59 | 2022-03-28 06:04:59 |
https://www.trendyol.com/bonacure/schwarzkopf-bonacure-peptide-acil-kurtarma-derin-besleme-sampuan-1000ml-p-4659259?boutiqueId=601988&merchantId=104937 https://www.trendyol.com/bonacure/schwarzkopf-bonacure-hyaluronic-nem-yukleyen-sampuan-1000ml-p-4659251?boutiqueId=601988&merchantId=153982 https://www.trendyol.com/bonacure/ph-4-5-renk-koruma-sulfatsiz-sampuan-1000-ml-4045787426427-p-3342186?boutiqueId=61&merchantId=153982 https://www.trendyol.com/bonacure/derin-temizleme-sampuani-1000-ml-4045787427042-p-6473286?boutiqueId=601836&merchantId=110245
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/n104662_04c0540006b0ccd9edec074e313f7a23eses/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/n104662_04c0540006b0ccd9edec074e313f7a23eses/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/n104662_04c0540006b0ccd9edec074e313f7a23eses/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/n104662_04c0540006b0ccd9edec074e313f7a23eses/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/n104662_04c0540006b0ccd9edec074e313f7a23eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
TUSHY pornstars and performers featuring in our first time anal porn videos. View all the girls in...
created on 2024-12-19
TUSHY pornstars and performers featuring in our first time anal porn videos. View all the girls in...
created on 2024-12-19