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...
item-card-title | Column 1 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|
Air Wick Aerosol Oda Kokusu Sprey 300 ml - Okyanus Ferahlığı Q08236 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Bal Küpü Küp Şeker 1 kg S17099 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Edding 344 Fosforlu Kalem 5 Adet - Karışık Renk S07824 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Kurukahveci Mehmet Efendi Türk Kahvesi 100 g S17067 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Maratem M105 Alkol Bazlı El Dezenfektanı - 5 L Q02152 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Mimaks D-3 Çöp Kovası Metal Delikli 10 L - Siyah Q07671 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Nescafe Gold Kahve Teneke 900 g L56774 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Noki 4830 Eco Delikli Poşet Dosya A4 45 Mikron - 100 Adet S11065 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Ofix Kupa Özel Baskılı - 3'lü Özel Set Q09163 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Oneplus Muayene Eldiveni Lateks Pudralı 100 Adet Beyaz - Medium Q10731 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Pensan 2270 Tükenmez Kalem 1.0 mm 50 Adet - Mavi Q06431 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Rulopak Sensörlü Klozet Kapağı Rulosu 50 Adet (1 Koli) Alana Rulopak Sensörlü Hij... | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Selin Limon Kolonyası 200 ml S52652 | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Selpak Professional Extra Kağıt Havlu Çift Katlı 23 x 12.5 cm 100 Yaprak - 24 Ade... | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | |
Tecno A4 Fotokopi Kağıdı 80 g/m² 500 Yaprak x 5 Paket L29920 | Ofix Ofis Malzemeleri KAMPANYALAR GİRİŞ 0 SEPETİM KAĞIT ÜRÜNLERİ KIRTASİYE ÜRÜ... | https://www.ofix.com/ | https://www.ofix.com/ | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 | 2021-09-16 08:27:10 |
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/n96769_c5917c3dc17ef4429bb5b0eb68fc603ceses/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/n96769_c5917c3dc17ef4429bb5b0eb68fc603ceses/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/n96769_c5917c3dc17ef4429bb5b0eb68fc603ceses/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/n96769_c5917c3dc17ef4429bb5b0eb68fc603ceses/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/n96769_c5917c3dc17ef4429bb5b0eb68fc603ceses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
created on 2024-11-13