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...
model | fiyat | km | vites tipi | yakıt türü | Column 6 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|
2015 500X POPSTAR 1.4 MULTIAIR 140 TCT | 810.000 | 51.253 KM | Otomatik | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | |
2016 EGEA HB LOUNGE PLUS 1.4 T-JET 120 | 660.000 | 62.656 KM | Manuel | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | |
2020 500 STAR 1.2 FIRE 69 DUALOGIC | 33.233 KM | Otomatik | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | ||
2020 500X CROSS 1.3 FIREFLY 150 DCT | 42.273 KM | Otomatik | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | ||
2020 500X SPORT 1.3 FIREFLY 150 DCT E6D | 1.120.000 | 14.368 KM | Otomatik | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | |
2021 500L CROSS PLUS 1.4 FIRE 95 | 7.444 KM | Manuel | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | ||
2021 EGEA CROSS LOUNGE 1.4 FIRE 95 E6D | 770.000 | 27.528 KM | Manuel | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | |
2021 EGEA HB LOUNGE 1.0 FIREFLY 100 E6D | 810.000 | 27.615 KM | Manuel | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | |
2021 EGEA URBAN 1.6 M.JET 120 | 53.352 KM | Manuel | Dizel | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | ||
2022 500X CROSS PLUS 1.3 FIREFLY 150 DCT | 1.015.000 | 35.376 KM | Otomatik | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | |
2022 EGEA SEDAN LOUNGE 1.5 T4 HIBRIT 130 AT | 8.756 KM | Otomatik | Hibrit | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | ||
2022 FIORINO COMBI PREMIO 1.4 EKO 77 | 585.000 | 14.329 KM | Manuel | Benzin | https://otoplus.com/fiat | https://otoplus.com/fiat | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 UTC | 2023-12-07 08:24:33 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/n126327_fb6c636789ff3db48605aa507bb4f9d1eses/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/n126327_fb6c636789ff3db48605aa507bb4f9d1eses/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/n126327_fb6c636789ff3db48605aa507bb4f9d1eses/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/n126327_fb6c636789ff3db48605aa507bb4f9d1eses/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/n126327_fb6c636789ff3db48605aa507bb4f9d1eses/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