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...
id | status | store | item name | image | money and qty | total cost | item desc | desc | order link | Column 11 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Order ID: 8159514993840894 Copy | Completed | 2021 NEW Multifunctional Home Use Magnetic LED Flashlight Torch Flexible Hand Tor... | AU$1.18x1 | Total:AU$5.80 | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | |||||
Order ID: 8159529549180894 Copy | Completed |
| Total:AU$9.25 | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | ||||||
Order ID: 8159529940270894 Copy | Completed |
| Total:AU$9.25 | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | ||||||
Order ID: 8159530186710894 Copy | Completed | Screwdriver Set Magnetic Screw Driver Kit Bits Precision Electric Xiaomi Iphone C... | AU$2.53x1 | Total:AU$8.54 | Gold, China | Gold, China | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | |||
Order ID: 8159530186730894 Copy | Completed | Graphtec CB09 silhouette Cameo Holder 15Pcs Blades Vinyl Cutter Plotter 30 / 45 /... | AU$13.77x1 | Total:AU$15.15 | 25 in 1 set | 25 in 1 set | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | |||
Order ID: 8159530186750894 Copy | Completed | AU$16.80x1 | Total:AU$18.92 | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | ||||||
Order ID: 8159622369550894 Copy | Completed |
| Total:AU$9.25 | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | ||||||
Order ID: 8183244728900894 Copy | Completed | GTWIN Phone Accessories Store | 7 in 1 Mechanical Keyboard Cleaning Brush Kit Headphone Cleaner Kit Bluetooth Ear... | AU$4.29x1 | Total:AU$4.47 | Light Green | Light Green | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | ||
Order ID: 8183244728920894 Copy | Completed | Romoral 3C Global CHOICE Store | USB Macro Custom Mini Keyboard 12 Keys 2 Knob Programming DIY Mechanical Keyboard... | AU$26.39x1 | Total:AU$27.53 | HX-K12 Black | HX-K12 Black | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | ||
Order ID: 8183244728940894 Copy | Completed | TopGearWorld Store | 56CM Capacity For Picking Up Nut Bolt Extendable Pickup Rod Stick Portable Telesc... |
| Total:AU$13.22 | Order details | https://www.aliexpress.com/p/order/index.html | https://www.aliexpress.com/p/order/index.html | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 UTC | 2024-02-04 12:47:39 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/n128396_7442e29d7d53e549b78d93c46b8cdcfceses/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/n128396_7442e29d7d53e549b78d93c46b8cdcfceses/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/n128396_7442e29d7d53e549b78d93c46b8cdcfceses/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/n128396_7442e29d7d53e549b78d93c46b8cdcfceses/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/n128396_7442e29d7d53e549b78d93c46b8cdcfceses/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