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...
option | option 1 | option 2 | option 3 | option 81 | option 80 | option 79 | option 78 | option 77 | option 76 | option 74 | option 72 | option 75 | option 73 | option 71 | option 70 | option 69 | option 68 | option 67 | option 66 | option 65 | option 64 | option 63 | option 62 | option 61 | option 60 | option 59 | option 58 | option 57 | option 56 | option 55 | option 54 | option 53 | option 52 | option 51 | option 50 | option 49 | option 48 | option 47 | option 46 | option 45 | option 44 | option 43 | option 42 | option 41 | option 40 | option 39 | option 38 | option 37 | option 36 | option 35 | option 34 | option 33 | option 32 | option 31 | option 30 | option 29 | option 28 | option 27 | option 26 | option 25 | option 24 | option 23 | option 22 | option 21 | option 20 | option 19 | option 18 | option 17 | option 16 | option 15 | option 14 | option 13 | option 12 | option 11 | option 10 | option 9 | option 7 | option 8 | option 6 | option 5 | option 4 | Column 1 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Kapıda Nakit Ödeme | Kapıda Kredi Kartı ile Ödeme | https://minyaturhane.com/ | https://minyaturhane.com/ | 2023-09-19 08:36:01 UTC | 2023-09-19 08:36:01 UTC | 2023-09-19 08:36:01 UTC | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Lütfen Şehir Seçiniz | Adana | Adıyaman | Afyon | Zonguldak | Yozgat | Yalova | Van | Uşak | Tunceli | Tokat | Şırnak | Trabzon | Tekirdağ | Şanlıurfa | Sivas | Sinop | Siirt | Samsun | Sakarya | Rize | Osmaniye | Ordu | Niğde | Nevşehir | Muş | Muğla | Mersin (içel) | Mardin | Manisa | Malatya | Kütahya | Konya | Kocaeli | Kilis | Kırşehir | Kırklareli | Kırıkkale | Kayseri | Kastamonu | Kars | Karaman | Karabük | Kahramanmaraş | İzmir | İstanbul | Isparta | Iğdır | Hatay | Hakkari | Gümüşhane | Giresun | Gaziantep | Eskişehir | Erzurum | Erzincan | Elazığ | Edirne | Düzce | Diyarbakır | Denizli | Çorum | Çankırı | Çanakkale | Bursa | Burdur | Bolu | Bitlis | Bingöl | Bilecik | Bayburt | Batman | Bartın | Balıkesir | Aydın | Artvin | Ardahan | Ankara | Antalya | Amasya | Aksaray | Ağrı | https://minyaturhane.com/ | https://minyaturhane.com/ | 2023-09-19 08:36:01 UTC | 2023-09-19 08:36:01 UTC | 2023-09-19 08:36:01 UTC |
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/n123515_4128258d652a49ac732e9dce40a371eeeses/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/n123515_4128258d652a49ac732e9dce40a371eeeses/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/n123515_4128258d652a49ac732e9dce40a371eeeses/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/n123515_4128258d652a49ac732e9dce40a371eeeses/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/n123515_4128258d652a49ac732e9dce40a371eeeses/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-21
created on 2024-11-21
created on 2024-11-20